Userspace/libc/src/setjmp.c
2023-08-06 04:52:48 +03:00

11 lines
156 B
C

#include <setjmp.h>
PUBLIC int setjmp(jmp_buf env)
{
return 0;
}
PUBLIC __attribute__((noreturn)) void longjmp(jmp_buf env, int value)
{
_exit(value);
}