mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
18 lines
115 B
R
18 lines
115 B
R
|
void bar ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void foo ()
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
for (i = 0; i < 11; i++)
|
||
|
bar ();
|
||
|
}
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
foo ();
|
||
|
return 0;
|
||
|
}
|