From 47fc6a3ad0147d34fa9d7716508e0a101285df03 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 16 Jun 2009 13:23:04 +0000 Subject: * io.c (rb_io_open), math.c (domain_check), object.c (boot_defclass): constified. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@23704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- object.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'object.c') diff --git a/object.c b/object.c index 564d907739..d053c2fe39 100644 --- a/object.c +++ b/object.c @@ -2614,9 +2614,11 @@ rb_f_array(obj, arg) return rb_Array(arg); } +static VALUE boot_defclass _((const char *name, VALUE super)); + static VALUE boot_defclass(name, super) - char *name; + const char *name; VALUE super; { extern st_table *rb_class_tbl; -- cgit v1.2.3