mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
aeed16109f
Ugh, I really need to take time out to do compile tests properly.
15 lines
123 B
R
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;
|
|
}
|