fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64
[musl] / src / fcntl / openat.c
index 4faeb29..83a9e0d 100644 (file)
@@ -1,11 +1,10 @@
 #include <fcntl.h>
 #include <stdarg.h>
 #include "syscall.h"
-#include "libc.h"
 
 int openat(int fd, const char *filename, int flags, ...)
 {
-       mode_t mode;
+       mode_t mode = 0;
 
        if ((flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE) {
                va_list ap;
@@ -16,5 +15,3 @@ int openat(int fd, const char *filename, int flags, ...)
 
        return syscall_cp(SYS_openat, fd, filename, flags|O_LARGEFILE, mode);
 }
-
-LFS64(openat);