home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_01 / TURBOC_1.LZH / INCLUDE / SETJMP.H < prev    next >
Text File  |  1990-03-02  |  415b  |  23 lines

  1. /*      SETJMP.H
  2.  
  3.         Context Switch Definition Includes
  4.  
  5.         Copyright (c) Borland International 1988
  6.         All Rights Reserved.
  7. */
  8.  
  9.  
  10. #if !defined( __SETJMP )
  11. #define __SETJMP
  12.  
  13.  
  14. typedef long jmp_buf[16];
  15.  
  16. void    longjmp(jmp_buf jmp_buffer, int return_value);
  17. int     setjmp(jmp_buf jmp_buffer);
  18.  
  19.  
  20. #endif
  21.  
  22. /************************************************************************/
  23.