setjmp.h 418 B

123456789101112131415161718192021222324252627
  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 _EXFUN(longjmp,(jmp_buf __jmpb, int __retval))
  12. __attribute__ ((__noreturn__));
  13. #else
  14. void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
  15. #endif
  16. int _EXFUN(setjmp,(jmp_buf __jmpb));
  17. #define setjmp(env) setjmp(env)
  18. _END_STD_C
  19. #endif /* _SETJMP_H_ */