mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-30 08:17:50 +00:00
11 lines
156 B
C
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);
|
|
} |