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