summaryrefslogtreecommitdiff
path: root/libc/stdlib/mktemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdlib/mktemp.c')
-rw-r--r--libc/stdlib/mktemp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/stdlib/mktemp.c b/libc/stdlib/mktemp.c
index 432d64f2a..4faa3e671 100644
--- a/libc/stdlib/mktemp.c
+++ b/libc/stdlib/mktemp.c
@@ -19,14 +19,12 @@
#include <stdio.h>
#include <stdlib.h>
-extern int __gen_tempname (char *tmpl, int openit);
-
/* Generate a unique temporary file name from TEMPLATE.
The last six characters of TEMPLATE must be "XXXXXX";
they are replaced with a string that makes the filename unique. */
char * mktemp (char *template)
{
- if (__gen_tempname (template, 0) < 0)
+ if (__gen_tempname (template, __GT_NOCREATE) < 0)
/* We return the null string if we can't find a unique file name. */
template[0] = '\0';