diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-05-19 21:09:29 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-05-19 21:09:29 -0400 |
commit | ed690b2f24bbc4d9c541fc81a7c67e6dc5678a96 (patch) | |
tree | 8eb04a0eb7a36a6ae9cb8022061ad72b5b7218a8 /libio/freopen64.c | |
parent | f5f312ebe06920f8cdd389ff42713a7088898a11 (diff) | |
download | glibc-ed690b2f24bbc4d9c541fc81a7c67e6dc5678a96.tar.gz glibc-ed690b2f24bbc4d9c541fc81a7c67e6dc5678a96.tar.xz glibc-ed690b2f24bbc4d9c541fc81a7c67e6dc5678a96.zip |
Cleanup namespace use.
Diffstat (limited to 'libio/freopen64.c')
-rw-r--r-- | libio/freopen64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/freopen64.c b/libio/freopen64.c index 99045c6419..6c4a20f9a3 100644 --- a/libio/freopen64.c +++ b/libio/freopen64.c @@ -86,7 +86,7 @@ freopen64 (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); } |