home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / dev / vbcc / machines / amiga68k / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  127 b   |  11 lines

  1. #ifndef __SETJMP_H
  2. #define __SETJMP_H 1
  3.  
  4. typedef int jmp_buf[13];
  5.  
  6. int setjmp (jmp_buf);
  7. void longjmp (jmp_buf, int);
  8.  
  9. #endif
  10.  
  11.