mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
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.
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user