1
0
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:
Samuel Thibault
2019-12-01 20:52:39 +00:00
parent db25266c92
commit dd67928700
6 changed files with 10 additions and 6 deletions

View File

@ -39,6 +39,7 @@ __access (const char *file, int type)
__set_errno (ENOSYS);
return -1;
}
libc_hidden_def (__access)
stub_warning (access)
weak_alias (__access, access)