mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-12 01:41:37 +00:00
21 lines
106 B
C
21 lines
106 B
C
|
main()
|
||
|
{
|
||
|
__label__ l;
|
||
|
|
||
|
void*x()
|
||
|
{
|
||
|
goto l;
|
||
|
}
|
||
|
|
||
|
x();
|
||
|
abort();
|
||
|
return;
|
||
|
l:
|
||
|
exit(0);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|