summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-08-28 09:53:42 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-08-28 09:53:42 +0000
commit770303d5aa3ccc7bdc7b5c3a0552f96238f04dfe (patch)
tree04d1097b4a3e8e795f16306fe9f350a57a0f0057 /intern.h
parente0f3aab312df60a890524c5b922f0c6525adaf18 (diff)
downloadruby-770303d5aa3ccc7bdc7b5c3a0552f96238f04dfe.tar.gz
ruby-770303d5aa3ccc7bdc7b5c3a0552f96238f04dfe.tar.xz
ruby-770303d5aa3ccc7bdc7b5c3a0552f96238f04dfe.zip
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern.h b/intern.h
index b37c4dcea..5609c3f8d 100644
--- a/intern.h
+++ b/intern.h
@@ -366,8 +366,12 @@ void rb_const_assign _((VALUE, ID, VALUE));
VALUE rb_mod_constants _((VALUE));
void rb_autoload_load _((ID));
void rb_cvar_declare _((VALUE, ID, VALUE));
-VALUE rb_cvar_get _((VALUE, ID));
+int rb_cvar_defined _((VALUE, ID));
void rb_cvar_set _((VALUE, ID, VALUE));
+VALUE rb_cvar_get _((VALUE, ID));
+int rb_cvar_defined_singleton _((VALUE, ID));
+void rb_cvar_set_singleton _((VALUE, ID, VALUE));
+VALUE rb_cvar_get_singleton _((VALUE, ID));
/* version.c */
void ruby_show_version _((void));
void ruby_show_copyright _((void));