diff options
Diffstat (limited to 'src/stat/lstat.c')
-rw-r--r-- | src/stat/lstat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stat/lstat.c b/src/stat/lstat.c index 9f95218a..6fe004de 100644 --- a/src/stat/lstat.c +++ b/src/stat/lstat.c @@ -6,4 +6,6 @@ int lstat(const char *restrict path, struct stat *restrict buf) return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW); } +#if !_REDIR_TIME64 weak_alias(lstat, lstat64); +#endif |