diff options
Diffstat (limited to 'newlib/libc/stdio/mktemp.c')
-rw-r--r-- | newlib/libc/stdio/mktemp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/newlib/libc/stdio/mktemp.c b/newlib/libc/stdio/mktemp.c index f6a6b68..54c7a97 100644 --- a/newlib/libc/stdio/mktemp.c +++ b/newlib/libc/stdio/mktemp.c @@ -102,7 +102,7 @@ Supporting OS subroutines required: <<getpid>>, <<open>>, <<stat>>. #include <ctype.h> #include <reent.h> -static +static int _DEFUN (_gettemp, (ptr, path, doopen), struct _reent *ptr _AND char *path _AND @@ -182,6 +182,7 @@ _DEFUN (_gettemp, (ptr, path, doopen), /*NOTREACHED*/ } +int _DEFUN (_mkstemp_r, (ptr, path), struct _reent *ptr _AND char *path) @@ -201,6 +202,7 @@ _DEFUN (_mktemp_r, (ptr, path), #ifndef _REENT_ONLY +int _DEFUN (mkstemp, (path), char *path) { |