summaryrefslogtreecommitdiff
path: root/system/include/setjmp.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-09-24 18:21:58 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-09-24 18:21:58 -0700
commit2f11f2e15392069a3c4a72fef2358fbf722b4e0e (patch)
tree7aadb70939ccfa84575b44e0ee714d891666efc7 /system/include/setjmp.h
parentec318d92f2c5f645eab561efc461941405071131 (diff)
start to include system headers (tests broken)
Diffstat (limited to 'system/include/setjmp.h')
-rw-r--r--system/include/setjmp.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/system/include/setjmp.h b/system/include/setjmp.h
new file mode 100644
index 00000000..c958d904
--- /dev/null
+++ b/system/include/setjmp.h
@@ -0,0 +1,20 @@
+/*
+ setjmp.h
+ stubs for future use.
+*/
+
+#ifndef _SETJMP_H_
+#define _SETJMP_H_
+
+#include "_ansi.h"
+#include <machine/setjmp.h>
+
+_BEGIN_STD_C
+
+void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
+int _EXFUN(setjmp,(jmp_buf __jmpb));
+
+_END_STD_C
+
+#endif /* _SETJMP_H_ */
+