From eb0f1ab7839b5cce514c41a25712b9c31f280cff Mon Sep 17 00:00:00 2001 From: knu Date: Wed, 25 Jul 2001 08:19:49 +0000 Subject: * intern.h: add some missing function prototypes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ intern.h | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index bb3d907a4c..b2e152ddd6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Jul 25 17:16:26 2001 Akinori MUSHA + + * intern.h: add some missing function prototypes. + Tue Jul 24 23:10:47 2001 Nobuyoshi.Nakada * file.c (strrdirsep): multi-byte pathname and DOSish separater diff --git a/intern.h b/intern.h index c1bc8d765e..1d74b7e22a 100644 --- a/intern.h +++ b/intern.h @@ -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 */ -- cgit v1.2.3