aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/include/mips/irix/setjmp.h
blob: 384a1ca5ce969cf41cc54f0324540de9a5ae234b (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 */