home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / SETJMP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  547 b   |  33 lines

  1. /*    setjmp.h
  2.  
  3.     Defines typedef and functions for setjmp/longjmp.
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl    cdecl
  12. #endif
  13.  
  14. #ifndef _SETJMP
  15. #define _SETJMP
  16. typedef struct {
  17.     unsigned    j_sp;
  18.     unsigned    j_ss;
  19.     unsigned    j_flag;
  20.     unsigned    j_cs;
  21.     unsigned    j_ip;
  22.     unsigned    j_bp;
  23.     unsigned    j_di;
  24.     unsigned    j_es;
  25.     unsigned    j_si;
  26.     unsigned    j_ds;
  27. }    jmp_buf[1];
  28.  
  29. void    _Cdecl longjmp(jmp_buf jmpb, int retval);
  30. int    _Cdecl setjmp(jmp_buf jmpb);
  31. #endif
  32.  
  33.