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