]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - gmqcc.h
lexer now turns '(' into an operator if noops=false
[xonotic/gmqcc.git] / gmqcc.h
diff --git a/gmqcc.h b/gmqcc.h
index c0b5fb3ce4c3cfb46046bc5429f3fdc47070bae8..e0784942444239af78dc0bced3696693994adf52 100644 (file)
--- a/gmqcc.h
+++ b/gmqcc.h
@@ -189,6 +189,8 @@ typedef char intptr_size_is_correct [sizeof(uintptr_t)== sizeof(int*)?1:-1];
 /*===================================================================*/
 /*=========================== util.c ================================*/
 /*===================================================================*/
+FILE *util_fopen(const char *filename, const char *mode);
+
 void *util_memory_a      (unsigned int, unsigned int, const char *);
 void  util_memory_d      (void       *, unsigned int, const char *);
 void  util_meminfo       ();
@@ -783,7 +785,7 @@ enum store_types {
 };
 
 typedef struct {
-    float x, y, z;
+    qcfloat x, y, z;
 } vector;
 
 vector  vec3_add  (vector, vector);