diff options
Diffstat (limited to 'newlib/libc/stdio/mktemp.c')
-rw-r--r-- | newlib/libc/stdio/mktemp.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/newlib/libc/stdio/mktemp.c b/newlib/libc/stdio/mktemp.c index 59e7a5c66..e00228e15 100644 --- a/newlib/libc/stdio/mktemp.c +++ b/newlib/libc/stdio/mktemp.c @@ -60,7 +60,7 @@ TRAD_SYNOPSIS DESCRIPTION <<mktemp>> and <<mkstemp>> attempt to generate a file name that is not -yet in use for any existing file. <<mkstemp>> creates the file and +yet in use for any existing file. <<mkstemp>> creates the file and opens it for reading and writing; <<mktemp>> simply generates the file name. You supply a simple pattern for the generated file name, as the string @@ -108,7 +108,11 @@ _DEFUN(_gettemp, (ptr, path, doopen), register int *doopen) { register char *start, *trv; +#ifdef __USE_INTERNAL_STAT64 + struct stat64 sbuf; +#else struct stat sbuf; +#endif unsigned int pid; pid = _getpid_r (ptr); |