diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-10-19 12:01:32 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-10-19 12:01:48 -0700 |
commit | cf6d542db3dfe26402b6adaa740a578b54767f65 (patch) | |
tree | b894688fee85a7022e5e55aeb664883dea1f8658 /include/sys | |
parent | 6ec52bf634b7650b57ff67b5f5053bce8992d549 (diff) | |
download | glibc-cf6d542db3dfe26402b6adaa740a578b54767f65.tar glibc-cf6d542db3dfe26402b6adaa740a578b54767f65.tar.gz glibc-cf6d542db3dfe26402b6adaa740a578b54767f65.tar.bz2 glibc-cf6d542db3dfe26402b6adaa740a578b54767f65.zip |
Mark ld.so internel __fxstatat64 hidden
Since ld.so internel __fxstatat64 is only used internally in ld.so, it
can be made hidden.
[BZ #19122]
* include/sys/stat.h [IS_IN (rtld)] (__fxstatat64): Add
attribute_hidden.
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/stat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/stat.h b/include/sys/stat.h index 873562a99d..4f31c00eca 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -35,6 +35,9 @@ libc_hidden_proto (__xmknodat) libc_hidden_proto (__fxstatat) libc_hidden_proto (__fxstatat64) +# if IS_IN (rtld) +extern __typeof (__fxstatat64) __fxstatat64 attribute_hidden; +# endif /* The `stat', `fstat', `lstat' functions have to be handled special since even while not compiling the library with optimization calls to these |