summaryrefslogtreecommitdiff
path: root/src/stdio/tempnam.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/tempnam.c')
-rw-r--r--src/stdio/tempnam.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdio/tempnam.c b/src/stdio/tempnam.c
new file mode 100644
index 00000000..d35dde0d
--- /dev/null
+++ b/src/stdio/tempnam.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+char * tempnam(const char * dir, const char * pfx)
+{
+ return NULL;
+}
+
+/*
+XOPEN(4)
+*/