9 lines
84 B
C
9 lines
84 B
C
#ifndef SETJMP_H
|
|
#define SETJMP_H
|
|
|
|
typedef struct {
|
|
int x[42];
|
|
} jmp_buf;
|
|
|
|
#endif
|