diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-05 10:18:21 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-05 10:18:21 +0000 |
| commit | 05f305a091477ad81ef9289c2b407966811bcf96 (patch) | |
| tree | 5cc0b0d419a3e9dc606e98f983cc7d2f182f37cd | |
| parent | 0e081d26df2106c20a852214c238252e90676c17 (diff) | |
| download | ruby-05f305a091477ad81ef9289c2b407966811bcf96.tar.gz ruby-05f305a091477ad81ef9289c2b407966811bcf96.tar.xz ruby-05f305a091477ad81ef9289c2b407966811bcf96.zip | |
* io.c (rb_stdio_set_default_encoding): prototyped.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | io.c | 2 | ||||
| -rw-r--r-- | ruby.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -8408,7 +8408,7 @@ rb_io_set_encoding(int argc, VALUE *argv, VALUE io) } void -rb_stdio_set_default_encoding() +rb_stdio_set_default_encoding(void) { extern VALUE rb_stdin, rb_stdout, rb_stderr; VALUE val = Qnil; @@ -1211,7 +1211,7 @@ rb_f_chomp(argc, argv) return str; } -void rb_stdio_set_default_encoding(); +void rb_stdio_set_default_encoding(void); static VALUE process_options(int argc, char **argv, struct cmdline_options *opt) |
