home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
languages
/
dice_443
/
include
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-02
|
220b
|
18 lines
/*
* SETJMP.H
*
* (c)Copyright 1990, Matthew Dillon, All Rights Reserved
*/
#ifndef _SETJMP_H
#define _SETJMP_H
typedef long jmp_buf[16];
extern int setjmp(jmp_buf);
extern void longjmp(jmp_buf, int);
#endif