diff options
-rw-r--r-- | libc/bionic/open.cpp | 2 | ||||
-rw-r--r-- | libc/libc.map.txt | 2 |
2 files changed, 0 insertions, 4 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); diff --git a/libc/libc.map.txt b/libc/libc.map.txt index 9b39bb842..a4ab600fa 100644 --- a/libc/libc.map.txt +++ b/libc/libc.map.txt @@ -1483,8 +1483,6 @@ LIBC_Q { # introduced=Q LIBC_R { # introduced=R global: __mempcpy_chk; - __open64_2; - __openat64_2; __tls_get_addr; # arm64 call_once; cnd_broadcast; |