home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_10 / 9n10017a < prev    next >
Text File  |  1991-09-09  |  354b  |  15 lines

  1. /* setjmp.h standard header */ 
  2. #ifndef _SETJMP
  3. #define _SETJMP
  4. #ifndef _YVALS
  5. #include <yvals.h>
  6. #endif
  7.                 /* type definitions */
  8. typedef int jmp_buf[_NSETJMP];
  9.                 /* declarations */
  10. void longjmp(jmp_buf, int);
  11. int setjmp(jmp_buf);
  12.                 /* macro overrides */
  13. #define setjmp(env)     setjmp(env)
  14. #endif
  15.