ioef/lcc/include/alpha/osf/setjmp.h
2005-08-28 17:54:51 +00:00

10 lines
139 B
C

#ifndef __SETJMP
#define __SETJMP
typedef int jmp_buf[35+1+48];
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);
#endif /* __SETJMP */