setjmp.h-data 692 B

123456789101112131415161718192021222324
  1. type jmp_buf
  2. #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined ISO23
  3. type sigjmp_buf
  4. #endif
  5. function void longjmp (jmp_buf, int)
  6. #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined ISO23
  7. function void siglongjmp (sigjmp_buf, int)
  8. # if !defined POSIX && !defined POSIX2008
  9. function void _longjmp (jmp_buf, int)
  10. # endif
  11. #endif
  12. macro-function int setjmp (jmp_buf)
  13. #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined ISO23
  14. macro-function int sigsetjmp (sigjmp_buf, int)
  15. # if !defined POSIX && !defined POSIX2008
  16. macro-function int _setjmp (jmp_buf)
  17. # endif
  18. #endif
  19. #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined ISO23
  20. allow *_t
  21. #endif