mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
18 lines
135 B
R
18 lines
135 B
R
|
int count;
|
||
|
|
||
|
void foo (void)
|
||
|
{
|
||
|
@static int x;
|
||
|
|
||
|
if (!x)
|
||
|
count++;
|
||
|
x = 1;
|
||
|
}
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
foo ();
|
||
|
foo ();
|
||
|
return count != 1;
|
||
|
}
|