summaryrefslogtreecommitdiff
path: root/defs/keywords
diff options
context:
space:
mode:
Diffstat (limited to 'defs/keywords')
-rw-r--r--defs/keywords2
1 files changed, 2 insertions, 0 deletions
diff --git a/defs/keywords b/defs/keywords
index f0d82a7667..1b5719aa85 100644
--- a/defs/keywords
+++ b/defs/keywords
@@ -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;