summaryrefslogtreecommitdiffstats
path: root/ruby.h
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-16 04:41:46 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-16 04:41:46 +0000
commitacc505b5b1227f9bae892847d74035fb92dc3bd3 (patch)
tree7c71874e6ce8a669260e0a32875d452d1dd3e5bc /ruby.h
parentc8a690465ca9fd56e8074317e9ce7de32b5a9024 (diff)
downloadruby-acc505b5b1227f9bae892847d74035fb92dc3bd3.tar.gz
ruby-acc505b5b1227f9bae892847d74035fb92dc3bd3.tar.xz
ruby-acc505b5b1227f9bae892847d74035fb92dc3bd3.zip
* dir.c (rb_glob, rb_globi): add const.
* ruby.h: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.h b/ruby.h
index dda9acc97..fd62a8929 100644
--- a/ruby.h
+++ b/ruby.h
@@ -468,8 +468,8 @@ struct RBignum {
void rb_obj_infect _((VALUE,VALUE));
-void rb_glob _((char*,void(*)(const char*,VALUE),VALUE));
-void rb_globi _((char*,void(*)(const char*,VALUE),VALUE));
+void rb_glob _((const char*,void(*)(const char*,VALUE),VALUE));
+void rb_globi _((const char*,void(*)(const char*,VALUE),VALUE));
VALUE rb_define_class _((const char*,VALUE));
VALUE rb_define_module _((const char*));