cleanup
[rpikern] / src / libc / setjmp.c
1 #include <setjmp.h>
2
3 int setjmp(jmp_buf buf)
4 {
5         return __builtin_setjmp(buf);
6 }
7
8 void longjmp(jmp_buf buf, int val)
9 {
10         __builtin_longjmp(buf, 1);
11 }