diff options
author | Nobuyoshi Nakada <[email protected]> | 2016-06-10 08:01:39 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-08-14 11:20:58 +0900 |
commit | c744b626985f5d78c6d8d8830b9aee2898412d7c (patch) | |
tree | becdf7b49adfdde95f4920ce00cbfadf95d7ce0e /io.c | |
parent | cad41bb6d35c09b0e5d9e50280e3bfcd1bd9bcc0 (diff) |
io.c: export rb_io_extract_modeenc
* include/ruby/io.h (rb_io_enc_t): add typedef.
* io.c (rb_io_extract_modeenc): export.
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5864,7 +5864,7 @@ extract_binmode(VALUE opthash, int *fmode) } } -static void +void rb_io_extract_modeenc(VALUE *vmode_p, VALUE *vperm_p, VALUE opthash, int *oflags_p, int *fmode_p, convconfig_t *convconfig_p) { |