commit | f226ee59e0effedeabed09e2d65be7fa7499cc25 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Wed Feb 03 11:24:28 2016 -0800 |
committer | Elliott Hughes <enh@google.com> | Wed Feb 03 11:24:28 2016 -0800 |
tree | 60b192388b5575a5315d7e9ea2b5b4ffa29ed59f | |
parent | a279324094d748b97201412b2457d2f6e26287dd [diff] [blame] |
Add fopen64/freopen64/tmpfile64 aliases. Our fopen/freopen/tmpfile are already always O_LARGEFILE, but let's add the aliases for _LARGEFILE_SOURCE compatibility. Bug: http://b/24807045 Change-Id: I5d99b3ef3c9f27ce70f13313f6a92e96c7f21f80
diff --git a/libc/bionic/tmpfile.cpp b/libc/bionic/tmpfile.cpp index 602d407..dc142a9 100644 --- a/libc/bionic/tmpfile.cpp +++ b/libc/bionic/tmpfile.cpp
@@ -112,3 +112,4 @@ } return fp; } +__strong_alias(tmpfile64, tmpfile);