aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/include/alpha/osf/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'lcc/include/alpha/osf/setjmp.h')
-rwxr-xr-xlcc/include/alpha/osf/setjmp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lcc/include/alpha/osf/setjmp.h b/lcc/include/alpha/osf/setjmp.h
new file mode 100755
index 0000000..83216dd
--- /dev/null
+++ b/lcc/include/alpha/osf/setjmp.h
@@ -0,0 +1,10 @@
+#ifndef __SETJMP
+#define __SETJMP
+
+
+
+typedef int jmp_buf[35+1+48];
+int setjmp(jmp_buf);
+void longjmp(jmp_buf, int);
+
+#endif /* __SETJMP */