mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
9 lines
78 B
C
9 lines
78 B
C
|
|
||
|
#include <setjmp.h>
|
||
|
|
||
|
sigjmp_buf B;
|
||
|
int foo() {
|
||
|
sigsetjmp(B, 1);
|
||
|
bar();
|
||
|
}
|