summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authornari <nari@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-09 11:51:32 +0000
committernari <nari@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-09 11:51:32 +0000
commit5e73aa6e241ecd2896fe673ab20cc51295d091bd (patch)
treee5fb02f5c6a68df63f46acb85ae3004b76148edd /internal.h
parentf0b087220c0e7622a29615b25f2f82a6cbacba34 (diff)
Revert "* internal.h: prototype declarations of gc.c collect up."
These declarations should be exported. This reverts commit 3c9f88c2ce138f2714c36cd25dc9b50ec93861e7. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43611 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/internal.h b/internal.h
index f4e8bb3c08..e7ecbbeda4 100644
--- a/internal.h
+++ b/internal.h
@@ -429,8 +429,6 @@ void Init_heap(void);
void *ruby_mimmalloc(size_t size);
void rb_objspace_set_event_hook(const rb_event_flag_t event);
void rb_gc_writebarrier_remember_promoted(VALUE obj);
-size_t rb_gc_count(void);
-size_t rb_obj_memsize_of(VALUE);
void *ruby_sized_xrealloc(void *ptr, size_t new_size, size_t old_size) RUBY_ATTR_ALLOC_SIZE((2));
void ruby_sized_xfree(void *x, size_t size);
@@ -819,6 +817,10 @@ void rb_mark_generic_ivar_tbl(void);
int rb_st_insert_id_and_value(VALUE obj, st_table *tbl, ID key, VALUE value);
st_table *rb_st_copy(VALUE obj, struct st_table *orig_tbl);
+/* gc.c */
+size_t rb_gc_count(void);
+size_t rb_obj_memsize_of(VALUE);
+
RUBY_SYMBOL_EXPORT_END
#if defined(__cplusplus)