aboutsummaryrefslogtreecommitdiffstats
path: root/symbol.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-16 15:43:16 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-16 15:43:16 +0900
commit7069f64c419ebb9a7fd3e48d81454148ed4b2fba (patch)
tree33b3f8299d21cd819326113f3fad33d2db90ed9e /symbol.c
parent973431c059ab2719e97d1ec051d21aa63a43a005 (diff)
downloadruby-7069f64c419ebb9a7fd3e48d81454148ed4b2fba.tar.gz
Prefix global_symbols with `ruby_`
Diffstat (limited to 'symbol.c')
-rw-r--r--symbol.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/symbol.c b/symbol.c
index b7df410187..78681ec598 100644
--- a/symbol.c
+++ b/symbol.c
@@ -63,7 +63,8 @@ enum id_entry_type {
ID_ENTRY_SIZE
};
-rb_symbols_t global_symbols = {tNEXT_ID-1};
+rb_symbols_t ruby_global_symbols = {tNEXT_ID-1};
+#define global_symbols ruby_global_symbols
static const struct st_hash_type symhash = {
rb_str_hash_cmp,