remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl] / src / stat / lstat.c
index 8f60358..6822fca 100644 (file)
@@ -1,10 +1,7 @@
 #include <sys/stat.h>
-#include "syscall.h"
-#include "libc.h"
+#include <fcntl.h>
 
 int lstat(const char *restrict path, struct stat *restrict buf)
 {
-       return syscall(SYS_lstat, path, buf);
+       return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
 }
-
-LFS64(lstat);