fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / stat / lstat.c
index 8b365ba..6822fca 100644 (file)
@@ -1,10 +1,7 @@
 #include <sys/stat.h>
 #include <fcntl.h>
-#include "syscall.h"
 
 int lstat(const char *restrict path, struct stat *restrict buf)
 {
        return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
 }
-
-weak_alias(lstat, lstat64);