home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Vectronix 2
/
VECTRONIX2.iso
/
FILES_07
/
TURBOC_1.ZIP
/
INCLUDE
/
SETJMP.H
< prev
next >
Wrap
Text File
|
1990-03-02
|
415b
|
23 lines
/* SETJMP.H
Context Switch Definition Includes
Copyright (c) Borland International 1988
All Rights Reserved.
*/
#if !defined( __SETJMP )
#define __SETJMP
typedef long jmp_buf[16];
void longjmp(jmp_buf jmp_buffer, int return_value);
int setjmp(jmp_buf jmp_buffer);
#endif
/************************************************************************/