Sign in
third-party-mirror
/
mingw-w64
/
4af5f10d9841f1c1bc781335eac4269a89788a09
/
.
/
mingw-w64-crt
/
testcases
/
t_setjmp.c
blob: d626b73107114530f29aa6df0fc67c8d0623c828 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<setjmp.h>
jmp_buf buf
;
void
foo
(
void
)
{
printf
(
"Call longjmp\n"
);
longjmp
(
buf
,
1
);
}
int
main
()
{
if
(
setjmp
(
buf
))
{
printf
(
"Caught\n"
);
}
else
{
foo
();
printf
(
"Should not be reached.\n"
);
return
1
;
}
return
0
;
}