diff options
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) { | 
