diff options
Diffstat (limited to 'src/libunixonacid/openc_appendat.c')
-rw-r--r-- | src/libunixonacid/openc_appendat.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libunixonacid/openc_appendat.c b/src/libunixonacid/openc_appendat.c new file mode 100644 index 0000000..70b6df7 --- /dev/null +++ b/src/libunixonacid/openc_appendat.c @@ -0,0 +1,11 @@ +/* ISC license. */ + +#include <sys/stat.h> +#include <fcntl.h> + +#include <skalibs/unix-transactional.h> + +int openc_appendat (int fd, char const *name) +{ + return open3_at(fd, name, O_WRONLY | O_NONBLOCK | O_APPEND | O_CREAT | O_CLOEXEC, 0666) ; +} |