1 // ----------------------------------------------------------------------------
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
8 // ----------------------------------------------------------------------------
11 #define __SETJMP_H __SETJMP_H
13 // TODO: Documentation
15 // ----------------------------------------------------------------------------
18 struct jmp_buf[1]; // TODO
20 // ----------------------------------------------------------------------------
23 int setjmp( jmp_buf env );
24 void longjmp( jmp_buf env, int val );