mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 14:45:07 +00:00
13 lines
163 B
C++
13 lines
163 B
C++
#include <setjmp.h>
|
|
#include <assert.h>
|
|
#include <Kernel/Syscall.h>
|
|
|
|
int setjmp(jmp_buf)
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
void longjmp(jmp_buf, int)
|
|
{
|
|
assert(false);
|
|
}
|