diff options
Diffstat (limited to 'libc/bionic/open.cpp')
-rw-r--r-- | libc/bionic/open.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/bionic/open.cpp b/libc/bionic/open.cpp index df5ab215b..222e5d3f4 100644 --- a/libc/bionic/open.cpp +++ b/libc/bionic/open.cpp @@ -70,7 +70,6 @@ int __open_2(const char* pathname, int flags) { if (needs_mode(flags)) __fortify_fatal("open: called with O_CREAT/O_TMPFILE but no mode"); return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), 0); } -__strong_alias(__open64_2, __open_2); int openat(int fd, const char *pathname, int flags, ...) { mode_t mode = 0; @@ -90,4 +89,3 @@ int __openat_2(int fd, const char* pathname, int flags) { if (needs_mode(flags)) __fortify_fatal("open: called with O_CREAT/O_TMPFILE but no mode"); return __openat(fd, pathname, force_O_LARGEFILE(flags), 0); } -__strong_alias(__openat64_2, __openat_2); |