aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/mkstemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/darwin/guts/mkstemp.c')
-rw-r--r--ports/darwin/guts/mkstemp.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/ports/darwin/guts/mkstemp.c b/ports/darwin/guts/mkstemp.c
new file mode 100644
index 0000000..73b0200
--- /dev/null
+++ b/ports/darwin/guts/mkstemp.c
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2011 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * int mkstemp(char *template)
+ * int rc = -1;
+ */
+
+ rc = real_mkstemp(template);
+
+/* return rc;
+ * }
+ */