home *** CD-ROM | disk | FTP | other *** search
- /* setjmp.h (c) Copyright 1990 H.Rogers */
-
- #ifndef __SETJMP_H
- #define __SETJMP_H
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- typedef int jmp_buf[23];
-
- extern int setjmp(jmp_buf);
- extern void longjmp(jmp_buf,int);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-