]> pd.if.org Git - pdclib/blobdiff - functions/setjmp.c
Added template implementation files.
[pdclib] / functions / setjmp.c
diff --git a/functions/setjmp.c b/functions/setjmp.c
new file mode 100644 (file)
index 0000000..762edfb
--- /dev/null
@@ -0,0 +1,9 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+
+int setjmp(jmp_buf env) { /* TODO */ };
+void longjmp(jmp_buf env, int val) { /* TODO */ };
\ No newline at end of file