0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-11 20:01:44 +00:00
quakeforge/tools/qfcc/test/static-init.r

20 lines
237 B
R
Raw Normal View History

#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;
}