]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - tests/ternary.qc
Fix #171
[xonotic/gmqcc.git] / tests / ternary.qc
index 242a2404d54f3668a0f707f16cf7f71895250dc0..bdac5264191d8ed88442ee98cd278df77d35fb41 100644 (file)
@@ -1,6 +1,3 @@
-void     print(...)   = #1;
-string   ftos (float) = #2;
-
 void test(float cond, float v1, float v2, float a) {
     print(ftos(cond ? v1 : v2), " ");
     print( (cond ? v1 : v2) ? ( (a == 1) ? "a=1"