summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/ruby/st.h2
-rw-r--r--internal.h3
2 files changed, 2 insertions, 3 deletions
diff --git a/include/ruby/st.h b/include/ruby/st.h
index 47e14a3e2c..ede3ff4456 100644
--- a/include/ruby/st.h
+++ b/include/ruby/st.h
@@ -143,6 +143,8 @@ CONSTFUNC(st_index_t st_hash_end(st_index_t h));
CONSTFUNC(st_index_t st_hash_start(st_index_t h));
#define st_hash_start(h) ((st_index_t)(h))
+void rb_hash_bulk_insert(long, const VALUE *, VALUE);
+
RUBY_SYMBOL_EXPORT_END
#if defined(__cplusplus)
diff --git a/internal.h b/internal.h
index b6b8839978..0d71dce5e2 100644
--- a/internal.h
+++ b/internal.h
@@ -1736,9 +1736,6 @@ int rb_match_nth_defined(int nth, VALUE match);
extern int ruby_enable_coredump;
int rb_get_next_signal(void);
-/* st.c */
-extern void rb_hash_bulk_insert(long, const VALUE *, VALUE);
-
/* strftime.c */
#ifdef RUBY_ENCODING_H
VALUE rb_strftime_timespec(const char *format, size_t format_len, rb_encoding *enc,