From 50018f92f7a1d79bc41a1ad5c5baf99eb7cd40af Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 1 Aug 2019 00:56:48 -0400 Subject: disable lfs64 aliases for remapped time64 functions these functions cannot provide the glibc lfs64-ABI-compatible symbols when time_t differs from what it was in that ABI. instead, the aliases need to be provided by the time32 compat shims or through some other mechanism. --- src/stat/fstat.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/stat/fstat.c') diff --git a/src/stat/fstat.c b/src/stat/fstat.c index 07f9a5de..9bbb46de 100644 --- a/src/stat/fstat.c +++ b/src/stat/fstat.c @@ -10,4 +10,6 @@ int fstat(int fd, struct stat *st) return fstatat(fd, "", st, AT_EMPTY_PATH); } +#if !_REDIR_TIME64 weak_alias(fstat, fstat64); +#endif -- cgit v1.2.1