1 #ifndef LIBCFLAT_SETJMP_H 2 #define LIBCFLAT_SETJMP_H 1 3 4 typedef struct jmp_buf_tag { 5 long int regs[8]; 6 } jmp_buf[1]; 7 8 extern int setjmp (struct jmp_buf_tag env[1]); 9 extern void longjmp (struct jmp_buf_tag env[1], int val) 10 __attribute__ ((__noreturn__)); 11 12 #endif /* setjmp.h */ 13