Luna/libs/libc/src/setjmp.cpp

25 lines
407 B
C++
Raw Normal View History

#include <luna.h>
#include <setjmp.h>
extern "C"
{
int setjmp(jmp_buf)
{
NOT_IMPLEMENTED("setjmp");
}
int sigsetjmp(sigjmp_buf, int)
{
NOT_IMPLEMENTED("sigsetjmp");
}
__lc_noreturn void longjmp(jmp_buf, int)
{
NOT_IMPLEMENTED("longjmp");
}
__lc_noreturn void siglongjmp(sigjmp_buf, int)
{
NOT_IMPLEMENTED("siglongjmp");
}
}