diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/fxstat64.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/fxstat64.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/fxstat64.c b/sysdeps/unix/sysv/linux/fxstat64.c index e64d8dfacb..f5e16050b6 100644 --- a/sysdeps/unix/sysv/linux/fxstat64.c +++ b/sysdeps/unix/sysv/linux/fxstat64.c @@ -84,17 +84,14 @@ ___fxstat64 (int vers, int fd, 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, ___fxstat64, __fxstat64, GLIBC_2_2); - -# if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) strong_alias (___fxstat64, __old__fxstat64) compat_symbol (libc, __old__fxstat64, __fxstat64, GLIBC_2_1); -# endif - +hidden_ver (___fxstat64, __fxstat64) #else -strong_alias (___fxstat64, __fxstat64); +strong_alias (___fxstat64, __fxstat64) +hidden_def (__fxstat64) #endif -hidden_ver (___fxstat64, __fxstat64) |