home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 15
/
AACD15.ISO
/
AACD
/
System
/
MorphOS
/
Developer
/
emulinclude
/
includestd
/
setjmp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2000-11-02
|
301 b
|
21 lines
#ifndef _SETJMP_H
#define _SETJMP_H
#ifdef __cplusplus
extern "C" {
#endif
#define _JBLEN 59 /* r1,r13-r31,cr,lr,f14-f31,r2 */
typedef int jmp_buf[_JBLEN] __attribute__((aligned(8)));
int setjmp(jmp_buf);
void longjmp(jmp_buf, int) __attribute__((noreturn));
#ifdef __cplusplus
}
#endif
#endif