summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-14 09:10:40 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-14 09:10:40 +0000
commitfeb1dfdfc6dedfb929e08c4f3aaf21f4983c8b25 (patch)
treeb1432f49382f789e405b65deb60389655bd45c00
parent125d830eb8525151861e932f4a01e76ac5c8b25e (diff)
* enum.c (find_index_i, find_index_iter_i): add prototype for VC.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--enum.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1686652aa1..711b4ba8be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Apr 14 18:10:05 2008 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * enum.c (find_index_i, find_index_iter_i): add prototype for VC.
+
Mon Apr 14 17:55:30 2008 Akinori MUSHA <knu@iDaemons.org>
* array.c (rb_ary_collect_bang, rb_ary_select): Return an
diff --git a/enum.c b/enum.c
index 353e8ddf47..7134a6aa84 100644
--- a/enum.c
+++ b/enum.c
@@ -229,6 +229,7 @@ enum_find(argc, argv, obj)
return Qnil;
}
+static VALUE find_index_i _((VALUE, VALUE));
static VALUE
find_index_i(i, memop)
VALUE i;
@@ -244,6 +245,7 @@ find_index_i(i, memop)
return Qnil;
}
+static VALUE find_index_iter_i _((VALUE, VALUE));
static VALUE
find_index_iter_i(i, memop)
VALUE i;