quakeforge/tools/qfcc/test/dead-block.r
Bill Currie fd24524e13 More tests.
I really need to sort out some test automation.
2011-03-03 22:32:22 +09:00

7 lines
73 B
R

integer dead_block (integer x)
{
if (x)
return 4;
else
return 6;
}