summaryrefslogtreecommitdiff
path: root/LibC/setjmp.cpp
blob: 48fed07ff8bc183c52c81856a1002b3799017aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
}