summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ruby/intern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index 6389073265..e5167c6fad 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -251,6 +251,7 @@ rb_check_trusted_inline(VALUE obj)
}
#define rb_check_trusted(obj) rb_check_trusted_inline(obj)
#endif
+void rb_check_copyable(VALUE obj, VALUE orig);
#define OBJ_INIT_COPY(obj, orig) \
((obj) != (orig) && (rb_obj_init_copy((obj), (orig)), 1))