#ifndef _SETJMP_H #define _SETJMP_H /* Define a type for use by setjmp and longjmp */ typedef struct { unsigned long buf[7]; } jmp_buf[1]; extern int setjmp(jmp_buf env); extern void longjmp(jmp_buf, int); #endif