summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-03 03:25:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-03 03:25:49 +0000
commit70362701ae51cf27bdc4f1c24855ec435aeca473 (patch)
tree8181da9a8b6f8ce3ef0c15f21c25aadf7b970139 /intern.h
parent3a9bd90d02d0dbf9a40a44c80cadaa3613d518cd (diff)
downloadruby-70362701ae51cf27bdc4f1c24855ec435aeca473.tar.gz
ruby-70362701ae51cf27bdc4f1c24855ec435aeca473.tar.xz
ruby-70362701ae51cf27bdc4f1c24855ec435aeca473.zip
* st.h: fix prototypes.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7445 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 4894c5165..9779d4d83 100644
--- a/intern.h
+++ b/intern.h
@@ -247,8 +247,8 @@ VALUE rb_gc_enable _((void));
VALUE rb_gc_disable _((void));
VALUE rb_gc_start _((void));
/* hash.c */
-void st_foreach _((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));