mirror of
https://github.com/cc65/cc65.git
synced 2026-03-10 17:21:49 +00:00
19 lines
158 B
C
19 lines
158 B
C
void f1(void)
|
|
{
|
|
if (1) {
|
|
f1();
|
|
} else {
|
|
f1();
|
|
}
|
|
}
|
|
|
|
void f2(void)
|
|
{
|
|
if (0) {
|
|
f2();
|
|
} else {
|
|
f2();
|
|
}
|
|
}
|
|
|