home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Programmieren / Kurztests / DiceC / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1994-02-01  |  218b  |  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.