quakeforge/tools/qfcc/test/vecinit.r
Bill Currie aeed16109f Add vecinit.r to the test-suite.
Ugh, I really need to take time out to do compile tests properly.
2012-12-10 21:09:53 +09:00

15 lines
123 B
R

vector
foo (float x, float y, float z)
{
vector v;
v.x = x;
v.y = y;
v.z = z;
return v;
}
int
main ()
{
return 0;
}