summaryrefslogtreecommitdiff
path: root/src/stdlib/mkstemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/mkstemp.c')
-rw-r--r--src/stdlib/mkstemp.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stdlib/mkstemp.c b/src/stdlib/mkstemp.c
new file mode 100644
index 00000000..11831ea2
--- /dev/null
+++ b/src/stdlib/mkstemp.c
@@ -0,0 +1,11 @@
+#include <stdlib.h>
+
+int mkstemp(char * template)
+{
+ return 0;
+}
+
+/*
+XOPEN(400)
+POSIX(200809)
+*/