diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-25 08:19:49 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-25 08:19:49 +0000 |
commit | 50f4f0904ac730823069eed1c8ba49f4054fa80a (patch) | |
tree | 49b4605467e90ad9a738b8a031f7f6454277c63e | |
parent | b450d319bda22e566f58818b0fb73e4e298967bb (diff) | |
download | ruby-50f4f0904ac730823069eed1c8ba49f4054fa80a.tar.gz ruby-50f4f0904ac730823069eed1c8ba49f4054fa80a.tar.xz ruby-50f4f0904ac730823069eed1c8ba49f4054fa80a.zip |
* intern.h: add some missing function prototypes.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | intern.h | 5 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Wed Jul 25 17:16:26 2001 Akinori MUSHA <knu@iDaemons.org> + + * intern.h: add some missing function prototypes. + Tue Jul 24 23:10:47 2001 Nobuyoshi.Nakada <nobu.nakada@nifty.ne.jp> * file.c (strrdirsep): multi-byte pathname and DOSish separater @@ -378,6 +378,8 @@ void rb_free_generic_ivar _((VALUE)); VALUE rb_ivar_get _((VALUE, ID)); VALUE rb_ivar_set _((VALUE, ID, VALUE)); VALUE rb_ivar_defined _((VALUE, ID)); +VALUE rb_iv_set _((VALUE, const char *, VALUE)); +VALUE rb_iv_get _((VALUE, const char *)); VALUE rb_obj_instance_variables _((VALUE)); VALUE rb_obj_remove_instance_variable _((VALUE, VALUE)); void *rb_mod_const_at _((VALUE, void*)); @@ -399,6 +401,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)); +VALUE 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 */ |