]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - util.c
Comment about the form of instruction general_instr is used for
[xonotic/gmqcc.git] / util.c
diff --git a/util.c b/util.c
index 9a23aed96400f62270240cc7d3d3d5421858e9da..7735a52457dba0e8a12b45ab1bf2013273b7f1f9 100644 (file)
--- a/util.c
+++ b/util.c
@@ -399,3 +399,11 @@ int util_getline(char **lineptr, size_t *n, FILE *stream) {
     *pos = '\0';
     return (ret = pos - *lineptr);
 }
+
+/* TODO: opts.c? when it gets large enugh */
+/* global options */
+bool opts_debug                     = false;
+bool opts_memchk                    = false;
+bool opts_darkplaces_stringtablebug = false;
+bool opts_omit_nullcode             = false;
+int  opts_compiler                  = COMPILER_GMQCC;