mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
14 lines
179 B
C++
14 lines
179 B
C++
#include <setjmp.h>
|
|
#include <assert.h>
|
|
#include <Kernel/Syscall.h>
|
|
|
|
int setjmp(jmp_buf)
|
|
{
|
|
//assert(false);
|
|
return 0;
|
|
}
|
|
|
|
void longjmp(jmp_buf, int)
|
|
{
|
|
assert(false);
|
|
}
|