8 lines
141 B
C
8 lines
141 B
C
#ifndef _YGGDRASIL_SETJMP_H
|
|
#define _YGGDRASIL_SETJMP_H 1
|
|
|
|
int setjmp(jmp_buf env);
|
|
[[noreturn]] void longjmp(jmp_buf env, int val);
|
|
|
|
#endif
|