]> pd.if.org Git - pdclib/blob - includes/setjmp.h
Started introducting "personality".
[pdclib] / includes / setjmp.h
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7 // Nonlocal jumps
8 // ----------------------------------------------------------------------------
9
10 #ifndef __SETJMP_H
11 #define __SETJMP_H __SETJMP_H
12
13 // TODO: Documentation
14
15 // ----------------------------------------------------------------------------
16 // TYPEDEFS
17
18 struct jmp_buf[1]; // TODO
19
20 // ----------------------------------------------------------------------------
21 // FUNCTIONS
22
23 int setjmp( jmp_buf env );
24 void longjmp( jmp_buf env, int val );
25
26 #endif // __SETJMP_H