home *** CD-ROM | disk | FTP | other *** search
- /*
- * setjmp.h -- ANSI
- *
- * Functions and type for setting up and executing non-local jumps.
- *
- * Copyright (c) 1990, MetaWare Incorporated
- */
-
- #ifndef _SETJMP_H
- #define _SETJMP_H
-
- typedef int jmp_buf[15]; /* loc only needs 11, but goc needs 15. use 15 for compatibility */
- extern int setjmp(jmp_buf __env);
- extern void longjmp(jmp_buf __env, int __val);
-
- #endif /* _SETJMP_H */
-