From 5e37b9d3478111088d3f4c5b6444c1993119327b Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 20 Dec 2001 02:03:03 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ intern.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 78cabf0a83..13a88f5ed5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 20 10:37:32 2001 Nobuyoshi Nakada + + * intern.h: added prototypes: rb_cv_set(), rb_cv_get(), + rb_define_class_variable() + Wed Dec 19 14:05:00 2001 Yukihiro Matsumoto * eval.c (rb_mod_define_method): define_method should follow 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 */