diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/xstat64.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/xstat64.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/xstat64.c b/sysdeps/unix/sysv/linux/xstat64.c index 388ff8fa68..7835fc2050 100644 --- a/sysdeps/unix/sysv/linux/xstat64.c +++ b/sysdeps/unix/sysv/linux/xstat64.c @@ -88,17 +88,15 @@ ___xstat64 (int vers, const char *name, struct stat64 *buf) #endif } -#ifndef RTLD_STAT64 -# include <shlib-compat.h> -versioned_symbol (libc, ___xstat64, __xstat64, GLIBC_2_2); +#include <shlib-compat.h> -# if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) +#if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) +versioned_symbol (libc, ___xstat64, __xstat64, GLIBC_2_2); strong_alias (___xstat64, __old__xstat64) compat_symbol (libc, __old__xstat64, __xstat64, GLIBC_2_1); -# endif - +hidden_ver (___xstat64, __xstat64) #else -strong_alias (___xstat64, __xstat64); +strong_alias (___xstat64, __xstat64) +hidden_def (__xstat64) #endif -hidden_ver (___xstat64, __xstat64) |