aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/include/mips/irix/setjmp.h
blob: d4247f91b0c839f02dffa73c974fb6fc3d23d2c5 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __SETJMP
#define __SETJMP



typedef int jmp_buf[28];
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);

#endif /* __SETJMP */