summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/fcntl/openat.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/fcntl/openat.c')
-rw-r--r--libc-top-half/musl/src/fcntl/openat.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/fcntl/openat.c b/libc-top-half/musl/src/fcntl/openat.c
new file mode 100644
index 0000000..ad165ec
--- /dev/null
+++ b/libc-top-half/musl/src/fcntl/openat.c
@@ -0,0 +1,19 @@
+#include <fcntl.h>
+#include <stdarg.h>
+#include "syscall.h"
+
+int openat(int fd, const char *filename, int flags, ...)
+{
+ mode_t mode = 0;
+
+ if ((flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE) {
+ va_list ap;
+ va_start(ap, flags);
+ mode = va_arg(ap, mode_t);
+ va_end(ap);
+ }
+
+ return syscall_cp(SYS_openat, fd, filename, flags|O_LARGEFILE, mode);
+}
+
+weak_alias(openat, openat64);