fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64
[musl] / src / stat / stat.c
index c5491eb..23570e7 100644 (file)
@@ -1,10 +1,7 @@
 #include <sys/stat.h>
-#include "syscall.h"
-#include "libc.h"
+#include <fcntl.h>
 
-int stat(const char *path, struct stat *buf)
+int stat(const char *restrict path, struct stat *restrict buf)
 {
-       return syscall(SYS_stat, path, buf);
+       return fstatat(AT_FDCWD, path, buf, 0);
 }
-
-LFS64(stat);