summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-03 03:25:29 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-03 03:25:29 +0000
commita9278637aac2aaaaa1eb57e594402f36e3382bbb (patch)
tree8cfe9e2994fc4905952182a49981bbdf2165aac4 /intern.h
parentc19718bd9891968c84733ac259d1498ea36c4bf2 (diff)
downloadruby-a9278637aac2aaaaa1eb57e594402f36e3382bbb.tar.gz
ruby-a9278637aac2aaaaa1eb57e594402f36e3382bbb.tar.xz
ruby-a9278637aac2aaaaa1eb57e594402f36e3382bbb.zip
* st.h: fix prototype for C++.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern.h b/intern.h
index 74df097ab..ef2eaaecd 100644
--- a/intern.h
+++ b/intern.h
@@ -255,8 +255,8 @@ VALUE rb_gc_enable _((void));
VALUE rb_gc_disable _((void));
VALUE rb_gc_start _((void));
/* hash.c */
-void st_foreach_safe _((struct st_table *, int (*)(), unsigned long));
-void rb_hash_foreach _((VALUE, int (*)(), VALUE));
+void st_foreach_safe _((struct st_table *, int (*)(ANYARGS), unsigned long));
+void rb_hash_foreach _((VALUE, int (*)(ANYARGS), VALUE));
VALUE rb_hash _((VALUE));
VALUE rb_hash_new _((void));
VALUE rb_hash_freeze _((VALUE));