home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / M2V11-2.LHA / modula / dice / dice.lha / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-17  |  220 b   |  18 lines

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