mirror of git://sourceware.org/git/glibc.git
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.
This commit is contained in:
parent
6ec52bf634
commit
cf6d542db3
|
@ -1,3 +1,9 @@
|
|||
2015-10-16 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
[BZ #19122]
|
||||
* include/sys/stat.h [IS_IN (rtld)] (__fxstatat64): Add
|
||||
attribute_hidden.
|
||||
|
||||
2015-10-19 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
|
||||
|
||||
[BZ #18743]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue