home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / CLISP-1.LHA / CLISP960530-sr.lha / amiga / jchlib / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-15  |  301 b   |  22 lines

  1. /* Tiny GCC Library
  2.  * setjmp.h
  3.  * Jörg Höhle, 29-Nov-92
  4.  */
  5.  
  6. #ifndef _SETJMP_H_
  7. #define _SETJMP_H_
  8.  
  9. /*
  10.  * GCCBuRP uses 13
  11.  * GCCWild uses 17
  12.  * DICE    uses 16
  13.  */
  14. #define _JBLEN    13
  15.  
  16. typedef long jmp_buf[_JBLEN];
  17.  
  18. int setjmp (jmp_buf);
  19. volatile void longjmp (jmp_buf, int);
  20.  
  21. #endif /* !_SETJMP_H_ */
  22.