diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/lxstat64.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/lxstat64.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sysdeps/unix/sysv/linux/lxstat64.c b/sysdeps/unix/sysv/linux/lxstat64.c index 0a29200014..e7f488848c 100644 --- a/sysdeps/unix/sysv/linux/lxstat64.c +++ b/sysdeps/unix/sysv/linux/lxstat64.c @@ -85,17 +85,14 @@ ___lxstat64 (int vers, const char *name, struct stat64 *buf) #endif } -#ifndef RTLD_STAT64 -# include <shlib-compat.h> +#include <shlib-compat.h> +#if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) versioned_symbol (libc, ___lxstat64, __lxstat64, GLIBC_2_2); - -# if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) strong_alias (___lxstat64, __old__lxstat64) compat_symbol (libc, __old__lxstat64, __lxstat64, GLIBC_2_1); -# endif - +hidden_ver (___lxstat64, __lxstat64) #else strong_alias (___lxstat64, __lxstat64); +hidden_def (__lxstat64) #endif -hidden_ver (___lxstat64, __lxstat64) |