quakeforge/tools/qfcc/test/upostop.r

18 lines
207 B
R
Raw Normal View History

int iter_check (unsigned count)
{
unsigned i = count;
int iters = 0;
while (i-- > 0) {
iters++;
}
return iters == count;
}
int
main ()
{
int ret = 0;
ret |= !iter_check (1);
return ret;
}