summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-21 01:03:00 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-21 01:03:00 +0000
commit71acab0ac811c28eb829639cf0b2f4f780caaa82 (patch)
tree82f9c756f9ea2c7c1445807b65e6bd63f97ef0fb
parentd369f0671b17cb34e6d3180f5b3205c9dd366af7 (diff)
* hash.c (recursive_hash): prototype.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--hash.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b56ce6d7a7..0d8da36d74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Apr 21 10:02:43 2008 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * hash.c (recursive_hash): prototype.
+
Mon Apr 21 10:00:51 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* time.c (rb_strftime): check errno to detect strftime(3)'s error.
diff --git a/hash.c b/hash.c
index cb8e63a3e7..5a3d7ecfab 100644
--- a/hash.c
+++ b/hash.c
@@ -1607,6 +1607,7 @@ hash_i(key, val, hval)
return ST_CONTINUE;
}
+static VALUE recursive_hash _((VALUE, VALUE, int));
static VALUE
recursive_hash(hash, dummy, recur)
VALUE hash;