fix code path where child function returns in arm __clone built as thumb
[musl] / src / stat / lstat.c
index 9053d99..9f95218 100644 (file)
@@ -1,10 +1,9 @@
 #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 syscall(SYS_lstat, path, buf);
+       return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
 }
 
-LFS64(lstat);
+weak_alias(lstat, lstat64);