summaryrefslogtreecommitdiff
path: root/src/setjmp/siglongjmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/setjmp/siglongjmp.c')
-rw-r--r--src/setjmp/siglongjmp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/setjmp/siglongjmp.c b/src/setjmp/siglongjmp.c
new file mode 100644
index 00000000..44b6d6ed
--- /dev/null
+++ b/src/setjmp/siglongjmp.c
@@ -0,0 +1,10 @@
+#include <setjmp.h>
+
+void siglongjmp(sigjmp_buf env, int val)
+{
+ (void)env; (void)val;
+ /* TODO */
+}
+/*
+POSIX(1)
+*/