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