summaryrefslogtreecommitdiff
path: root/mit-pthreads/tests/test_setjmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'mit-pthreads/tests/test_setjmp.c')
-rw-r--r--mit-pthreads/tests/test_setjmp.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/mit-pthreads/tests/test_setjmp.c b/mit-pthreads/tests/test_setjmp.c
deleted file mode 100644
index ea24ecd63bc..00000000000
--- a/mit-pthreads/tests/test_setjmp.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <setjmp.h>
-
-main()
-{
-jmp_buf foo;
-
-if (setjmp(foo)) {
- exit(0);
-}
-printf("Hi mom\n");
-longjmp(foo, 1);
-printf("Should never reach here\n");
-}