3 * - By John Hodge (thePowersGang)
6 * - setjmp/longjmp support
8 #ifndef _LIBC_SETJMP_H_
9 #define _LIBC_SETJMP_H_
16 typedef void *jmp_buf[8];
17 #elif defined(__amd64__)
18 typedef void *jmp_buf[16];
20 # error "Unknown Architecture"
23 extern int setjmp(jmp_buf buf);
24 extern void longjmp(jmp_buf buf, int val);