ensure standard functions mk[sd]temp don't depend on removed function mktemp
[musl] / src / temp / mkstemp.c
index 32c6be5..5e8bb93 100644 (file)
@@ -1,4 +1,3 @@
-#define _GNU_SOURCE
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -8,11 +7,13 @@
 #include <errno.h>
 #include "libc.h"
 
 #include <errno.h>
 #include "libc.h"
 
+char *__mktemp(char *);
+
 int mkstemp(char *template)
 {
        int fd;
 retry:
 int mkstemp(char *template)
 {
        int fd;
 retry:
-       if (!mktemp(template)) return -1;
+       if (!__mktemp(template)) return -1;
        fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600);
        if (fd >= 0) return fd;
        if (errno == EEXIST) {
        fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600);
        if (fd >= 0) return fd;
        if (errno == EEXIST) {