aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkostemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/guts/mkostemp.c')
-rw-r--r--ports/unix/guts/mkostemp.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/ports/unix/guts/mkostemp.c b/ports/unix/guts/mkostemp.c
new file mode 100644
index 0000000..bce0939
--- /dev/null
+++ b/ports/unix/guts/mkostemp.c
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2018 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * int mkostemp(char *template, int oflags)
+ * int rc = -1;
+ */
+
+ /* mkostemp = mkostemps() with suffixlen of 0 */
+ rc = wrap_mkostemps(template, 0, oflags);
+
+/* return rc;
+ * }
+ */