#include #include 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"); } }