diff options
Diffstat (limited to 'lib/libpthread/tests/test_setjmp.c')
-rw-r--r-- | lib/libpthread/tests/test_setjmp.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/libpthread/tests/test_setjmp.c b/lib/libpthread/tests/test_setjmp.c deleted file mode 100644 index ea24ecd63bc..00000000000 --- a/lib/libpthread/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"); -} |