home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s220 / 2.ddi / SETJMP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-10  |  114 b   |  9 lines

  1. /*            SETJMP.H
  2.  
  3. */
  4.  
  5. typedef char jmp_buf[8];
  6. int setjmp(jmp_buf env);
  7. void longjmp(jmp_buf env, int val);
  8.  
  9.