summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-compiler/core/keywords
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-08-12 18:22:31 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-08-12 18:22:31 +0900
commitf113fa2a4fad585521adf0b1d9e9b99836895ab4 (patch)
treef61d7a8508718c33ed5eb229d8ec57f6ec2f2445 /mrbgems/mruby-compiler/core/keywords
parentad0b54608888330c4bc25c9b4520a9cb3446f24d (diff)
downloadmruby-f113fa2a4fad585521adf0b1d9e9b99836895ab4.tar.gz
mruby-f113fa2a4fad585521adf0b1d9e9b99836895ab4.zip
Remove unnecessary prototypes from 'keywords`; fix #4628
Diffstat (limited to 'mrbgems/mruby-compiler/core/keywords')
-rw-r--r--mrbgems/mruby-compiler/core/keywords3
1 files changed, 0 insertions, 3 deletions
diff --git a/mrbgems/mruby-compiler/core/keywords b/mrbgems/mruby-compiler/core/keywords
index 9cb86608c..a60ecd10a 100644
--- a/mrbgems/mruby-compiler/core/keywords
+++ b/mrbgems/mruby-compiler/core/keywords
@@ -1,8 +1,5 @@
%{
struct kwtable {const char *name; int id[2]; enum mrb_lex_state_enum state;};
-const struct kwtable *mrb_reserved_word(const char *, unsigned int);
-static const struct kwtable *reserved_word(const char *, unsigned int);
-#define mrb_reserved_word(str, len) reserved_word(str, len)
%}
struct kwtable;