summaryrefslogtreecommitdiffstats
path: root/ruby.h
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-15 06:34:21 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-15 06:34:21 +0000
commit73c6cc655fc7be1b4778cda999b40501c003504c (patch)
tree4011b7f33c3e978dc26381104bc5181c4f0d6db7 /ruby.h
parent4ef47f8047ebf05ecce75657f38c148f88f58293 (diff)
downloadruby-73c6cc655fc7be1b4778cda999b40501c003504c.tar.gz
ruby-73c6cc655fc7be1b4778cda999b40501c003504c.tar.xz
ruby-73c6cc655fc7be1b4778cda999b40501c003504c.zip
* ruby.h, dir.c (rb_glob): add const.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.h b/ruby.h
index ef8ef2073..dc91588d8 100644
--- a/ruby.h
+++ b/ruby.h
@@ -468,7 +468,7 @@ struct RBignum {
void rb_obj_infect _((VALUE,VALUE));
-void rb_glob _((char*,void(*)(const char*,VALUE),VALUE));
+void rb_glob _((const char*,void(*)(const char*,VALUE),VALUE));
VALUE rb_define_class _((const char*,VALUE));
VALUE rb_define_module _((const char*));