* libc/stdio/mktemp.c (mkdtemp): Fix type in function name.
This commit is contained in:
parent
ee47ad3213
commit
61189f19de
|
@ -1,4 +1,8 @@
|
||||||
2009=08-12 Jeff Johnston <jjohnstn@redhat.com>
|
2009-08-13 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* libc/stdio/mktemp.c (mkdtemp): Fix type in function name.
|
||||||
|
|
||||||
|
2009-08-12 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/stdio/mktemp.c (_gettemp): Do not call _mkdir_r unless
|
* libc/stdio/mktemp.c (_gettemp): Do not call _mkdir_r unless
|
||||||
HAVE_MKDIR is defined.
|
HAVE_MKDIR is defined.
|
||||||
|
|
|
@ -301,7 +301,7 @@ _DEFUN(mkstemp, (path),
|
||||||
|
|
||||||
# if !defined _ELIX_LEVEL || _ELIX_LEVEL >= 4
|
# if !defined _ELIX_LEVEL || _ELIX_LEVEL >= 4
|
||||||
char *
|
char *
|
||||||
_DEFUN(mkdemp, (path),
|
_DEFUN(mkdtemp, (path),
|
||||||
char *path)
|
char *path)
|
||||||
{
|
{
|
||||||
return (_gettemp (_REENT, path, (int *) NULL, 1, 0) ? path : NULL);
|
return (_gettemp (_REENT, path, (int *) NULL, 1, 0) ? path : NULL);
|
||||||
|
|
Loading…
Reference in New Issue