add _setjmp, _longjmp definitions to the header file. functions are present in lib/libc/gen/setjmp.asm

This commit is contained in:
Kelvin Sherlock 2015-05-01 09:37:34 -04:00
parent 2b1afe29bf
commit bac8d80ffb

View File

@ -18,4 +18,9 @@ typedef int jmp_buf[6];
void longjmp(jmp_buf, int);
int setjmp(jmp_buf);
#ifndef __KeepNamespacePure__
void _longjmp(jmp_buf, int);
int _setjmp(jmp_buf);
#endif
#endif