home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  158 b   |  16 lines

  1.  
  2. /*
  3.  *  SETJMP.H
  4.  */
  5.  
  6. #ifndef _SETJMP_H
  7. #define _SETJMP_H
  8.  
  9. typedef long jmp_buf[16];
  10.  
  11. extern int setjmp(jmp_buf);
  12. extern void longjmp(jmp_buf, int);
  13.  
  14. #endif
  15.  
  16.