diff options
Diffstat (limited to 'libio/freopen.c')
-rw-r--r-- | libio/freopen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/freopen.c b/libio/freopen.c index 20eda9d0f5..ee98b6e580 100644 --- a/libio/freopen.c +++ b/libio/freopen.c @@ -102,7 +102,7 @@ freopen (filename, mode, fp) if (errno == ENOSYS) __have_dup3 = -1; - dup2 (_IO_fileno (result), fd); + __dup2 (_IO_fileno (result), fd); if ((result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0) __fcntl (fd, F_SETFD, FD_CLOEXEC); } |