ioef/code/tools/lcc/include/mips/irix/setjmp.h

11 lines
134 B
C
Raw Normal View History

2005-08-26 17:39:27 +00:00
#ifndef __SETJMP
#define __SETJMP
typedef int jmp_buf[28];
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);
#endif /* __SETJMP */