ioef/lcc/include/alpha/osf/setjmp.h

11 lines
149 B
C
Raw Normal View History

2005-08-26 04:48:05 +00:00
#ifndef __SETJMP
#define __SETJMP
typedef int jmp_buf[35+1+48];
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);
#endif /* __SETJMP */