mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
1fcb16d8cf
The function local static init is being treated as a non-static init (ie, initialized each call).
19 lines
237 B
R
19 lines
237 B
R
#include "test-harness.h"
|
|
|
|
int count_down ()
|
|
{
|
|
static int count = 2;
|
|
count--;
|
|
return count > 0;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
int ret = 0;
|
|
count_down ();
|
|
if (count_down ()) {
|
|
printf ("did not reach 0\n");
|
|
ret |= 1;
|
|
}
|
|
return ret;
|
|
}
|