brintos

brintos / llvm-project-archived public Read only

0
0
Text · 140 B · c24951e Raw
12 lines · c
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