blob: fb2548419275ae100ffe2e0a4d99eda2781fa4f6 [file] [log] [blame]
Chris Lattner95881ec2003-08-18 15:45:55 +00001
2#include <setjmp.h>
3
4sigjmp_buf B;
5int foo() {
6 sigsetjmp(B, 1);
7 bar();
8}