Files
ygglibc/include/bits/setjmp.h
T
2024-01-12 14:22:33 +02:00

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