home *** CD-ROM | disk | FTP | other *** search
- /* 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 __volatile__ longjmp (jmp_buf there, int n);
-
- #if defined (__cplusplus)
- }
- #endif
-
- #endif /* !defined (_SETJMP_H) */
-