]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - gmqcc.h
Fix teh paren!
[xonotic/gmqcc.git] / gmqcc.h
diff --git a/gmqcc.h b/gmqcc.h
index 9dc184657ccbb2a810dd7185bb0710d65a68ebe9..2ed331fe30b28682064b1b6762f1838854f39c0c 100644 (file)
--- a/gmqcc.h
+++ b/gmqcc.h
@@ -74,8 +74,6 @@
 #   endif /* !__STDC_VERSION__ */
 #endif    /* !__cplusplus      */
 
-
-
 /*
  * Of some functions which are generated we want to make sure
  * that the result isn't ignored. To find such function calls,
@@ -263,6 +261,10 @@ uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
 void     util_seed(uint32_t);
 uint32_t util_rand();
 
+int util_vasprintf(char **ret, const char *fmt, va_list);
+int util_asprintf (char **ret, const char *fmt, ...);
+
+
 #ifdef NOTRACK
 #    define mem_a(x)    malloc (x)
 #    define mem_d(x)    free   ((void*)x)