home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c329
/
2.img
/
INCL_A
/
SETJMP.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1989-09-23
|
262 b
|
14 lines
/* setjmp.h
* ANSI C Runtime Library
*/
#ifndef _SETJMP_H
#define _SETJMP_H
typedef int jmp_buf[16];
int setjmp(jmp_buf env);
#define setjmp(env) (setjmp(env)) /* Spec says it's a macro */
void longjmp(jmp_buf env, int val);
#endif