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