13,14c13,14
< static VALUE nxt_ruby_stream_io_gets(VALUE obj, VALUE args);
< static VALUE nxt_ruby_stream_io_each(VALUE obj, VALUE args);
---
> static VALUE nxt_ruby_stream_io_gets(VALUE obj);
> static VALUE nxt_ruby_stream_io_each(VALUE obj);
16c16
< static VALUE nxt_ruby_stream_io_rewind(VALUE obj, VALUE args);
---
> static VALUE nxt_ruby_stream_io_rewind(VALUE obj);
21c21
< static VALUE nxt_ruby_stream_io_flush(VALUE obj, VALUE args);
---
> static VALUE nxt_ruby_stream_io_flush(VALUE obj);
88c88
< nxt_ruby_stream_io_gets(VALUE obj, VALUE args)
---
> nxt_ruby_stream_io_gets(VALUE obj)
135c135
< nxt_ruby_stream_io_each(VALUE obj, VALUE args)
---
> nxt_ruby_stream_io_each(VALUE obj)
144c144
< chunk = nxt_ruby_stream_io_gets(obj, Qnil);
---
> chunk = nxt_ruby_stream_io_gets(obj);
206c206
< nxt_ruby_stream_io_rewind(VALUE obj, VALUE args)
---
> nxt_ruby_stream_io_rewind(VALUE obj)
269c269
< nxt_ruby_stream_io_flush(VALUE obj, VALUE args)
---
> nxt_ruby_stream_io_flush(VALUE obj)