semtimedop: add time64 syscall support, decouple 32-bit time_t
[musl] / src / fcntl / openat.c
index 4faeb29..ad165ec 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;
@@ -17,4 +16,4 @@ int openat(int fd, const char *filename, int flags, ...)
        return syscall_cp(SYS_openat, fd, filename, flags|O_LARGEFILE, mode);
 }
 
-LFS64(openat);
+weak_alias(openat, openat64);