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