1 /* 2 setjmp.h 3 stubs for future use. 4 */ 5 6 #ifndef _SETJMP_H_ 7 #ifdef __cplusplus 8 extern "C" { 9 #endif 10 #define _SETJMP_H_ 11 12 #include "_ansi.h" 13 #include <machine/setjmp.h> 14 15 void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval)); 16 int _EXFUN(setjmp,(jmp_buf __jmpb)); 17 18 #ifdef __cplusplus 19 } 20 #endif 21 #endif /* _SETJMP_H_ */ |