1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* array.c (rb_ary_zip): ANSI style.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-06-11 17:43:52 +00:00
parent 1d09b69f62
commit 9e412b83a0
2 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Thu Jun 12 02:43:27 2008 Yusuke Endoh <mame@tsg.ne.jp>
* array.c (rb_ary_zip): ANSI style.
Thu Jun 12 02:25:54 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> Thu Jun 12 02:25:54 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* io.c (rb_io_reopen): clear read buffer. * io.c (rb_io_reopen): clear read buffer.

View file

@ -1955,10 +1955,7 @@ take_items(VALUE obj, long n)
*/ */
static VALUE static VALUE
rb_ary_zip(argc, argv, ary) rb_ary_zip(int argc, VALUE *argv, VALUE ary)
int argc;
VALUE *argv;
VALUE ary;
{ {
int i, j; int i, j;
long len; long len;