chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / conform / data / setjmp.h-data
1 type jmp_buf
2 #ifndef ISO
3 type sigjmp_buf
4 #endif
5
6 function void longjmp (jmp_buf, int)
7 #ifndef ISO
8 function void siglongjmp (sigjmp_buf, int)
9 # ifndef POSIX
10 function void _longjmp (jmp_buf, int)
11 # endif
12 #endif
13
14 macro-function int setjmp (jmp_buf)
15 #ifndef ISO
16 macro-function int sigsetjmp (sigjmp_buf, int)
17 # ifndef POSIX
18 macro-function int _setjmp (jmp_buf)
19 # endif
20 #endif
21
22 allow *_t