summaryrefslogtreecommitdiff
path: root/LibC/setjmp.cpp
blob: 536e543a6e773c8a248303f4ed87c6614e796cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <setjmp.h>
#include <assert.h>
#include <Kernel/Syscall.h>

int setjmp(jmp_buf)
{
    assert(false);
}

void longjmp(jmp_buf, int)
{
    assert(false);
}