/* setjmp.h (emx+gcc) */

#if !defined (_SETJMP_H)
#define _SETJMP_H

#if defined (__cplusplus)
extern "C" {
#endif

#if !defined (_JMPBUF)
#define _JMPBUF

typedef int jmp_buf[12];

#endif

int setjmp (jmp_buf here);
void longjmp (jmp_buf there, int n) __attribute__ ((noreturn));

#if defined (__cplusplus)
}
#endif

#endif /* !defined (_SETJMP_H) */
