From 51efc221c15a958dc019087d3bb2ac0a80163dc7 Mon Sep 17 00:00:00 2001 From: knu Date: Wed, 25 Jul 2001 11:31:59 +0000 Subject: [PATCH] Fix a bogon in my last commit.. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- intern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern.h b/intern.h index 1d74b7e22a..4cd56eac16 100644 --- a/intern.h +++ b/intern.h @@ -401,7 +401,7 @@ VALUE rb_cvar_defined _((VALUE, ID)); void rb_cvar_set _((VALUE, ID, VALUE)); VALUE rb_cvar_get _((VALUE, ID)); VALUE rb_cvar_singleton _((VALUE)); -VALUE rb_cv_set _((VALUE, const char *, VALUE)); +void rb_cv_set _((VALUE, const char *, VALUE)); VALUE rb_cv_get _((VALUE, const char *)); void rb_define_class_variable _((VALUE, const char *, VALUE)); VALUE rb_mod_class_variables _((VALUE));