diff options
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r-- | conf/cf-lex.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 483bcaf..bdf9261 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -20,13 +20,13 @@ #include "conf/cf-parse.tab.h" #include "lib/string.h" -static struct keyword { +struct keyword { byte *name; int value; struct keyword *next; -} keyword_list[] = { +}; + #include "conf/keywords.h" - { NULL, -1 } }; #define KW_HASH_SIZE 64 static struct keyword *kw_hash[KW_HASH_SIZE]; |