X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Flstat.c;h=6fe004dec28c49e212821e413d2b4b35973bff85;hb=b67d56c7b3b0f84360db749aa6f431a07761d9c8;hp=9f95218a4e83e38929542861b4d3349f78ef3a85;hpb=67bf602f14249ff1757c54f071faa3f778279c02;p=musl 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