diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-05-12 10:53:04 +0800 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-05-12 10:53:04 +0800 |
commit | dc70356cbfc649af8e39c9a8d509fefd766fa8ef (patch) | |
tree | 1183fe5797332d424dd803f36c1ebda53ebe7324 /libio/freopen.c | |
parent | 9fb1a21f4d33c4c82719d6130e149eb2c5a51ae8 (diff) | |
download | glibc-dc70356cbfc649af8e39c9a8d509fefd766fa8ef.tar.gz glibc-dc70356cbfc649af8e39c9a8d509fefd766fa8ef.tar.xz glibc-dc70356cbfc649af8e39c9a8d509fefd766fa8ef.zip |
Avoid dup3 PLT usage.
Fixes fallout from 5aa3a74a59916b489e9cf7c4dce9eb149e106c6c.
Diffstat (limited to 'libio/freopen.c')
-rw-r--r-- | libio/freopen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/freopen.c b/libio/freopen.c index 025c55b655..fa89c277c6 100644 --- a/libio/freopen.c +++ b/libio/freopen.c @@ -89,9 +89,9 @@ freopen (filename, mode, fp) else newfd = # endif - dup3 (_IO_fileno (result), fd, - (result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0 - ? O_CLOEXEC : 0); + __dup3 (_IO_fileno (result), fd, + (result->_flags2 & _IO_FLAGS2_CLOEXEC) != 0 + ? O_CLOEXEC : 0); #else # define newfd 1 #endif |