summaryrefslogtreecommitdiff
path: root/src/stat/__xstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/__xstat.c')
-rw-r--r--src/stat/__xstat.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/stat/__xstat.c b/src/stat/__xstat.c
index f6303430..b4560df7 100644
--- a/src/stat/__xstat.c
+++ b/src/stat/__xstat.c
@@ -1,5 +1,7 @@
#include <sys/stat.h>
+#if !_REDIR_TIME64
+
int __fxstat(int ver, int fd, struct stat *buf)
{
return fstat(fd, buf);
@@ -20,10 +22,7 @@ int __xstat(int ver, const char *path, struct stat *buf)
return stat(path, buf);
}
-weak_alias(__fxstat, __fxstat64);
-weak_alias(__fxstatat, __fxstatat64);
-weak_alias(__lxstat, __lxstat64);
-weak_alias(__xstat, __xstat64);
+#endif
int __xmknod(int ver, const char *path, mode_t mode, dev_t *dev)
{