home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
462b
|
29 lines
#ifndef _SETJMP_H
#define _SETJMP_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
typedef char * jmp_buf[14];
__EXTERN int setjmp __PROTO((jmp_buf));
__EXTERN void longjmp __PROTO((jmp_buf, int));
#ifndef __MINT__
# ifndef __cplusplus
__EXTERN int catch __PROTO((jmp_buf id, int (*fn )(void )));
__EXTERN void throw __PROTO((jmp_buf id, int rv));
# endif
#endif
#ifdef __cplusplus
}
#endif
#endif /* _SETJMP_H */