home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-18  |  363 b   |  25 lines

  1. /* setjmp.h (emx+gcc) */
  2.  
  3. #if !defined (_SETJMP_H)
  4. #define _SETJMP_H
  5.  
  6. #if defined (__cplusplus)
  7. extern "C" {
  8. #endif
  9.  
  10. #if !defined (_JMPBUF)
  11. #define _JMPBUF
  12.  
  13. typedef int jmp_buf[12];
  14.  
  15. #endif
  16.  
  17. int setjmp (jmp_buf here);
  18. void __volatile__ longjmp (jmp_buf there, int n);
  19.  
  20. #if defined (__cplusplus)
  21. }
  22. #endif
  23.  
  24. #endif /* !defined (_SETJMP_H) */
  25.