home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / SETJMP.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  363b  |  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.