mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2025-02-20 04:28:56 +00:00
22 lines
164 B
C
22 lines
164 B
C
int v;
|
|
|
|
char *
|
|
g ()
|
|
{
|
|
return "";
|
|
}
|
|
|
|
char *
|
|
f ()
|
|
{
|
|
return (v == 0 ? g () : "abc");
|
|
}
|
|
|
|
main ()
|
|
{
|
|
v = 1;
|
|
if (!strcmp (f (), "abc"))
|
|
exit (0);
|
|
abort();
|
|
}
|