summaryrefslogtreecommitdiff
path: root/userland/libc/include/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/include/setjmp.h')
-rw-r--r--userland/libc/include/setjmp.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/userland/libc/include/setjmp.h b/userland/libc/include/setjmp.h
new file mode 100644
index 0000000..ea15cf3
--- /dev/null
+++ b/userland/libc/include/setjmp.h
@@ -0,0 +1,14 @@
+#ifndef SETJMP_H
+#define SETJMP_H
+typedef unsigned long __jmp_buf[6];
+typedef struct __jmp_buf_tag {
+ __jmp_buf __jb;
+ unsigned long __fl;
+ unsigned long __ss[128/sizeof(long)];
+} jmp_buf[1];
+typedef jmp_buf sigjmp_buf;
+
+void _longjmp(jmp_buf, int);
+void longjmp(jmp_buf, int);
+void siglongjmp(sigjmp_buf, int);
+#endif