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