1type jmp_buf
2#if !defined ISO && !defined ISO99 && !defined ISO11
3type sigjmp_buf
4#endif
5
6function void longjmp (jmp_buf, int)
7#if !defined ISO && !defined ISO99 && !defined ISO11
8function void siglongjmp (sigjmp_buf, int)
9# if !defined POSIX && !defined POSIX2008
10function void _longjmp (jmp_buf, int)
11# endif
12#endif
13
14macro-function int setjmp (jmp_buf)
15#if !defined ISO && !defined ISO99 && !defined ISO11
16macro-function int sigsetjmp (sigjmp_buf, int)
17# if !defined POSIX && !defined POSIX2008
18macro-function int _setjmp (jmp_buf)
19# endif
20#endif
21
22#if !defined ISO && !defined ISO99 && !defined ISO11
23allow *_t
24#endif
25