1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 14:45:07 +00:00
serenity/LibC/setjmp.cpp
2018-11-11 00:44:04 +01:00

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);
}