]> git.sur5r.net Git - cc65/blob - include/setjmp.h
af7572eb5bcbfca97e3d59d93bbf77aa866e2225
[cc65] / include / setjmp.h
1 /*
2  * setjmp.h
3  *
4  * Ullrich von Bassewitz, 06.06.1998
5  *
6  */
7
8
9
10 #ifndef _SETJMP_H
11 #define _SETJMP_H
12
13
14
15 typedef char jmp_buf [5];
16
17
18
19 int __fastcall__ _setjmp (jmp_buf buf);
20 #define setjmp  _setjmp         /* ISO insists on a macro */
21 void __fastcall__ longjmp (jmp_buf buf, int retval);
22
23
24
25 /* End of stddef.h */
26 #endif
27
28
29