summaryrefslogtreecommitdiff
path: root/src/temp/mkstemp.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-14 19:18:06 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-14 19:18:06 -0500
commit5377715ce07269131f011e6f4e978fb5dbf0b294 (patch)
treed8d22ad01abb34db4296910ef00667054b7cbe1f /src/temp/mkstemp.c
parentc255e5542df8733d6a7227730120bb0c281019b0 (diff)
downloadmusl-5377715ce07269131f011e6f4e978fb5dbf0b294.tar.gz
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.c5
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) {