summaryrefslogtreecommitdiffstats
path: root/conf/conf.h
diff options
context:
space:
mode:
Diffstat (limited to 'conf/conf.h')
-rw-r--r--conf/conf.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/conf.h b/conf/conf.h
index 0853ae8..6a0a328 100644
--- a/conf/conf.h
+++ b/conf/conf.h
@@ -21,12 +21,14 @@ extern int (*cf_read_hook)(byte *buf, unsigned int max);
struct symbol {
struct symbol *next;
int class;
+ int aux;
void *def;
char name[1];
};
#define SYM_VOID 0
#define SYM_PROTO 1
+#define SYM_NUMBER 2
void cf_lex_init_tables(void);
int cf_lex(void);