setjmp.h 361 B

12345678910111213141516171819202122232425
  1. /*
  2. setjmp.h
  3. stubs for future use.
  4. */
  5. #ifndef _SETJMP_H_
  6. #define _SETJMP_H_
  7. #include "_ansi.h"
  8. #include <machine/setjmp.h>
  9. _BEGIN_STD_C
  10. #ifdef __GNUC__
  11. void longjmp (jmp_buf __jmpb, int __retval)
  12. __attribute__ ((__noreturn__));
  13. #else
  14. void longjmp (jmp_buf __jmpb, int __retval);
  15. #endif
  16. int setjmp (jmp_buf __jmpb);
  17. _END_STD_C
  18. #endif /* _SETJMP_H_ */