summaryrefslogtreecommitdiff
path: root/src/temp/mkstemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/temp/mkstemp.c')
-rw-r--r--src/temp/mkstemp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/temp/mkstemp.c b/src/temp/mkstemp.c
new file mode 100644
index 0000000..76c835b
--- /dev/null
+++ b/src/temp/mkstemp.c
@@ -0,0 +1,6 @@
+#include <stdlib.h>
+
+int mkstemp(char *template)
+{
+ return __mkostemps(template, 0, 0);
+}