home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 5.ddi / MWHC.005 / I1 < prev    next >
Encoding:
Text File  |  1992-01-07  |  413 b   |  17 lines

  1. /*
  2.  *   setjmp.h -- ANSI 
  3.  *
  4.  *   Functions and type for setting up and executing non-local jumps.
  5.  *
  6.  *           Copyright (c) 1990, MetaWare Incorporated
  7.  */
  8.  
  9. #ifndef _SETJMP_H
  10. #define _SETJMP_H
  11.  
  12. typedef int jmp_buf[15]; /* loc only needs 11, but goc needs 15. use 15 for compatibility */
  13. extern int setjmp(jmp_buf __env);
  14. extern void longjmp(jmp_buf __env, int __val);
  15.  
  16. #endif /* _SETJMP_H */
  17.