home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d3xx / d359 / dice.lha / DICE / DICE.lzh / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1990-02-20  |  158b  |  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.