aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/include/alpha/osf/setjmp.h
blob: 83216dd8712f9fff2e17c4d162063f5719955986 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __SETJMP
#define __SETJMP



typedef int jmp_buf[35+1+48];
int setjmp(jmp_buf);
void longjmp(jmp_buf, int);

#endif /* __SETJMP */