home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d3xx
/
d359
/
dice.lha
/
DICE
/
DICE.lzh
/
include
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-02-20
|
158b
|
16 lines
/*
* SETJMP.H
*/
#ifndef _SETJMP_H
#define _SETJMP_H
typedef long jmp_buf[16];
extern int setjmp(jmp_buf);
extern void longjmp(jmp_buf, int);
#endif