home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
gnu
/
g__lib
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-23
|
240b
|
18 lines
#ifndef _setjmp_h
#pragma once
#if vax
static const int _JBLEN = 10;
#endif
#if sun
static const int _JBLEN = 15;
#endif
typedef int jmp_buf[_JBLEN];
extern int setjmp(jmp_buf);
extern void longjmp(jmp_buf, int);
#endif