From dd67928700bc9b5954c93b29a6e0b0c4b279d454 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 1 Dec 2019 20:52:39 +0000 Subject: hurd: Fix ld.so __access override from libc ld.so symbols to be overriden by libc need to be extern to really get overriden. __access happens to have never been exposed, putting it to GLIBC_PRIVATE. --- sysdeps/unix/sysv/linux/access.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sysdeps/unix/sysv/linux') diff --git a/sysdeps/unix/sysv/linux/access.c b/sysdeps/unix/sysv/linux/access.c index 690c99a856..f9fd6e64cf 100644 --- a/sysdeps/unix/sysv/linux/access.c +++ b/sysdeps/unix/sysv/linux/access.c @@ -29,4 +29,5 @@ __access (const char *file, int type) return INLINE_SYSCALL_CALL (faccessat, AT_FDCWD, file, type); #endif } +libc_hidden_def (__access) weak_alias (__access, access) -- cgit 1.4.1