diff options
Diffstat (limited to 'src/fcntl/openat.c')
-rw-r--r-- | src/fcntl/openat.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/fcntl/openat.c b/src/fcntl/openat.c new file mode 100644 index 0000000..83a9e0d --- /dev/null +++ b/src/fcntl/openat.c @@ -0,0 +1,17 @@ +#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); +} |