1#ifndef SETJMP_H2#define SETJMP_H3 4typedef struct {5 int x[42];6} jmp_buf;7 8 __attribute__((noreturn))9void longjmp(jmp_buf, int);10 11#endif12