summaryrefslogtreecommitdiff
path: root/mit-pthreads/tests/test_setjmp.c
blob: ea24ecd63bc39970a76ff2485b8746cc84d9293f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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");
}