home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 10.ddi / 017.LIF / SETJMP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-02  |  398 b   |  23 lines

  1. /* setjmp.h - define the set jump stuff
  2.  * $Version: 1.1 $
  3.  * Copyright (C) 1988-91 Intel Corporation, ALL RIGHTS RESERVED
  4.  */
  5.  
  6. #ifndef _setjmph
  7. #define _setjmph
  8. /*lint -library */
  9.  
  10. #pragma fixedparams("longjmp", "setjmp")
  11.  
  12. #define _JBLEN  9
  13. typedef int jmp_buf[_JBLEN];
  14.  
  15. /*
  16.  * Function prototypes:
  17.  */
  18. void longjmp(jmp_buf, int);
  19. int setjmp(jmp_buf);
  20.  
  21. #endif /* _setjmph */
  22.  
  23.