diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-14 19:18:06 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-14 19:18:06 -0500 |
commit | 5377715ce07269131f011e6f4e978fb5dbf0b294 (patch) | |
tree | d8d22ad01abb34db4296910ef00667054b7cbe1f /src/temp/mkstemp.c | |
parent | c255e5542df8733d6a7227730120bb0c281019b0 (diff) | |
download | musl-5377715ce07269131f011e6f4e978fb5dbf0b294.tar.gz musl-5377715ce07269131f011e6f4e978fb5dbf0b294.tar.xz musl-5377715ce07269131f011e6f4e978fb5dbf0b294.zip |
ensure standard functions mk[sd]temp don't depend on removed function mktemp
Diffstat (limited to 'src/temp/mkstemp.c')
-rw-r--r-- | src/temp/mkstemp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/temp/mkstemp.c b/src/temp/mkstemp.c index 32c6be57..5e8bb934 100644 --- a/src/temp/mkstemp.c +++ b/src/temp/mkstemp.c @@ -1,4 +1,3 @@ -#define _GNU_SOURCE #include <string.h> #include <stdio.h> #include <stdlib.h> @@ -8,11 +7,13 @@ #include <errno.h> #include "libc.h" +char *__mktemp(char *); + 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) { |