ioq3quest/lcc/include/sparc/solaris/setjmp.h

11 lines
134 B
C
Raw Normal View History

#ifndef __SETJMP
#define __SETJMP
typedef int jmp_buf[12];
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);
#endif /* __SETJMP */