1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

nptl: Remove open from libpthread

The libc version is identical and built with same flags.  The libc
version is set as the default version.

Checked on x86_64-linux-gnu.
This commit is contained in:
Adhemerval Zanella
2021-03-12 20:54:13 -03:00
parent c5c3588475
commit 40873cdd38
40 changed files with 15 additions and 127 deletions

View File

@ -20,8 +20,8 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <stdarg.h>
#include <sysdep-cancel.h>
#include <shlib-compat.h>
#ifdef __OFF_T_MATCHES_OFF64_T
@ -59,3 +59,7 @@ strong_alias (__libc_open64, __open)
libc_hidden_weak (__open)
weak_alias (__libc_open64, open)
#endif
#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_1, GLIBC_2_2)
compat_symbol (libc, __libc_open64, open64, GLIBC_2_2);
#endif