diff options
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -15,8 +15,6 @@ #include "ruby/fiber/scheduler.h" -#include "internal/io.h" - #include <ctype.h> #include <errno.h> #include <signal.h> @@ -1963,7 +1961,7 @@ check_exec_redirect_fd(VALUE v, int iskey) goto wrong; } else if (!NIL_P(tmp = rb_io_check_io(v))) { - struct rb_io *fptr; + rb_io_t *fptr; GetOpenFile(tmp, fptr); if (fptr->tied_io_for_writing) rb_raise(rb_eArgError, "duplex IO redirection"); |