diff options
Diffstat (limited to 'include/ruby/impl/core/rhash.h')
-rw-r--r-- | include/ruby/impl/core/rhash.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ruby/impl/core/rhash.h b/include/ruby/impl/core/rhash.h index 7cd0386c6f..d0ef1a56f0 100644 --- a/include/ruby/impl/core/rhash.h +++ b/include/ruby/impl/core/rhash.h @@ -1,5 +1,5 @@ -#ifndef RUBY3_RHASH_H /*-*-C++-*-vi:se ft=cpp:*/ -#define RUBY3_RHASH_H +#ifndef RBIMPL_RHASH_H /*-*-C++-*-vi:se ft=cpp:*/ +#define RBIMPL_RHASH_H /** * @file * @author Ruby developers <[email protected]> @@ -7,7 +7,7 @@ * Permission is hereby granted, to either redistribute and/or * modify this file, provided that the conditions mentioned in the * file COPYING are met. Consult the file for details. - * @warning Symbols prefixed with either `RUBY3` or `ruby3` are + * @warning Symbols prefixed with either `RBIMPL` or `ruby3` are * implementation details. Don't take them as canon. They could * rapidly appear then vanish. The name (path) of this header file * is also an implementation detail. Do not expect it to persist @@ -53,10 +53,10 @@ struct st_table; /* in ruby/st.h */ -RUBY3_SYMBOL_EXPORT_BEGIN() +RBIMPL_SYMBOL_EXPORT_BEGIN() size_t rb_hash_size_num(VALUE hash); struct st_table *rb_hash_tbl(VALUE, const char *file, int line); VALUE rb_hash_set_ifnone(VALUE hash, VALUE ifnone); -RUBY3_SYMBOL_EXPORT_END() +RBIMPL_SYMBOL_EXPORT_END() -#endif /* RUBY3_RHASH_H */ +#endif /* RBIMPL_RHASH_H */ |