s390x: add single-instruction math functions
[musl.git] / src / fcntl / open.c
blob3928a6e6696f05106e81bfd70a84210ce431e62a
1 #include <fcntl.h>
2 #include <stdarg.h>
3 #include "syscall.h"
4 #include "libc.h"
6 int open(const char *filename, int flags, ...)
8 mode_t mode = 0;
10 if ((flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE) {
11 va_list ap;
12 va_start(ap, flags);
13 mode = va_arg(ap, mode_t);
14 va_end(ap);
17 int fd = __sys_open_cp(filename, flags, mode);
18 if (fd>=0 && (flags & O_CLOEXEC))
19 __syscall(SYS_fcntl, fd, F_SETFD, FD_CLOEXEC);
21 return __syscall_ret(fd);
24 LFS64(open);