home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c329 / 2.img / INCL_A / SETJMP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-23  |  262 b   |  14 lines

  1. /*  setjmp.h
  2.  *  ANSI C Runtime Library
  3.  */
  4.  
  5. #ifndef _SETJMP_H
  6. #define _SETJMP_H
  7.  
  8. typedef int jmp_buf[16];
  9.  
  10. int setjmp(jmp_buf env);
  11. #define setjmp(env)     (setjmp(env))       /* Spec says it's a macro */
  12. void longjmp(jmp_buf env, int val);
  13. #endif
  14.