diff options
Diffstat (limited to 'defs/lex.c.src')
-rw-r--r-- | defs/lex.c.src | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/defs/lex.c.src b/defs/lex.c.src index f0d82a766..1b5719aa8 100644 --- a/defs/lex.c.src +++ b/defs/lex.c.src @@ -2,6 +2,8 @@ struct kwtable {const char *name; int id[2]; enum lex_state_e state;}; const struct kwtable *rb_reserved_word(const char *, unsigned int); #ifndef RIPPER +static const struct kwtable *reserved_word(const char *, unsigned int); +#define rb_reserved_word(str, len) reserved_word(str, len) %} struct kwtable; |