summaryrefslogtreecommitdiff
path: root/src/libstddjb/open_exclcoe.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2020-10-26 08:59:58 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2020-10-26 08:59:58 +0000
commit9806a4f3bb81f71c46735a2b378cb074fef6e27b (patch)
tree285d1f9d993b6233148bc4d82c2383db4c3f7a0c /src/libstddjb/open_exclcoe.c
parent15ec28669f6bd4cf4c958f84c0c7dbe58628b375 (diff)
downloadskalibs-9806a4f3bb81f71c46735a2b378cb074fef6e27b.tar.xz
Prepare for 2.9.4.0; add open*coe() functions.
Diffstat (limited to 'src/libstddjb/open_exclcoe.c')
-rw-r--r--src/libstddjb/open_exclcoe.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libstddjb/open_exclcoe.c b/src/libstddjb/open_exclcoe.c
new file mode 100644
index 0000000..b24786c
--- /dev/null
+++ b/src/libstddjb/open_exclcoe.c
@@ -0,0 +1,10 @@
+/* ISC license. */
+
+#include <skalibs/nonposix.h>
+#include <fcntl.h>
+#include <skalibs/djbunix.h>
+
+int open_exclcoe (char const *fn)
+{
+ return open3(fn, O_WRONLY | O_CREAT | O_EXCL | O_NONBLOCK | O_CLOEXEC, 0666) ;
+}