mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
16 lines
183 B
R
16 lines
183 B
R
|
void printf (string fmt, ...) = #0;
|
||
|
|
||
|
float
|
||
|
swap (float a, float b)
|
||
|
{
|
||
|
float t;
|
||
|
if (a < b) { t = a; a = b; b = t; }
|
||
|
return a - b;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
return swap (1, 2) > 0 ? 0 : 1;
|
||
|
}
|