1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nobu 2001-12-20 02:03:03 +00:00
parent 34d7173984
commit 5e37b9d347
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Thu Dec 20 10:37:32 2001 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
* intern.h: added prototypes: rb_cv_set(), rb_cv_get(),
rb_define_class_variable()
Wed Dec 19 14:05:00 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_mod_define_method): define_method should follow

View file

@ -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 */