gigatron/rom/Compilers/glcc/include/alpha/osf/setjmp.h
2025-01-28 19:17:01 +03:00

12 lines
140 B
C

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