about summary refs log tree commit diff
path: root/src/temp/mkdtemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/temp/mkdtemp.c')
-rw-r--r--src/temp/mkdtemp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/temp/mkdtemp.c b/src/temp/mkdtemp.c
index cb030ee4..162d98b0 100644
--- a/src/temp/mkdtemp.c
+++ b/src/temp/mkdtemp.c
@@ -1,4 +1,3 @@
-#define _GNU_SOURCE
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -9,10 +8,12 @@
 #include <sys/stat.h>
 #include "libc.h"
 
+char *__mktemp(char *);
+
 char *mkdtemp(char *template)
 {
 	for (;;) {
-		if (!mktemp(template)) return 0;
+		if (!__mktemp(template)) return 0;
 		if (!mkdir(template, 0700)) return template;
 		if (errno != EEXIST) return 0;
 		/* this is safe because mktemp verified