summaryrefslogtreecommitdiff
path: root/intern.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-12-20 02:03:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-12-20 02:03:03 +0000
commit5e37b9d3478111088d3f4c5b6444c1993119327b (patch)
tree92f33ea80d50223cdf5ca7f7a6377701120f0e18 /intern.h
parent34d7173984b2c897071d82ee98c356508279bf6d (diff)
* intern.h: added prototypes: rb_cv_set(), rb_cv_get(),
rb_define_class_variable() git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern.h b/intern.h
index 3a5b664eb8..e598aee763 100644
--- a/intern.h
+++ b/intern.h
@@ -387,6 +387,9 @@ VALUE rb_cvar_defined _((VALUE, ID));
void rb_cvar_set _((VALUE, ID, VALUE));
VALUE rb_cvar_get _((VALUE, ID));
VALUE rb_cvar_singleton _((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));
VALUE rb_mod_remove_cvar _((VALUE, VALUE));
/* version.c */