1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:38:10 +00:00
serenity/LibC/setjmp.cpp
Andreas Kling 3b2f172d48 A bunch of compat work (mostly stubs but some real implementations, too.)
Another pass at getting bash-1.14.7 to build. Not that many symbols remain.
2018-11-11 00:20:53 +01:00

13 lines
167 B
C++

#include <setjmp.h>
#include <assert.h>
#include <Kernel/Syscall.h>
int setjmp(jmp_buf)
{
assert(false);
}
void longjmp(jmp_buf, int val)
{
assert(false);
}