From: Corinna Vinschen Date: Thu, 13 Aug 2009 07:19:33 +0000 (+0000) Subject: * libc/stdio/mktemp.c (mkdtemp): Fix type in function name. X-Git-Tag: sid-snapshot-20090901~59 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=61189f19de6175e82cdb43c2ff5ed50f953ba3fa;p=newlib-cygwin.git * libc/stdio/mktemp.c (mkdtemp): Fix type in function name. --- diff --git a/newlib/ChangeLog b/newlib/ChangeLog index dd3c66c7b..c75cd8058 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,4 +1,8 @@ -2009=08-12 Jeff Johnston +2009-08-13 Corinna Vinschen + + * libc/stdio/mktemp.c (mkdtemp): Fix type in function name. + +2009-08-12 Jeff Johnston * libc/stdio/mktemp.c (_gettemp): Do not call _mkdir_r unless HAVE_MKDIR is defined. diff --git a/newlib/libc/stdio/mktemp.c b/newlib/libc/stdio/mktemp.c index 185d9df35..25e8a012b 100644 --- a/newlib/libc/stdio/mktemp.c +++ b/newlib/libc/stdio/mktemp.c @@ -301,7 +301,7 @@ _DEFUN(mkstemp, (path), # if !defined _ELIX_LEVEL || _ELIX_LEVEL >= 4 char * -_DEFUN(mkdemp, (path), +_DEFUN(mkdtemp, (path), char *path) { return (_gettemp (_REENT, path, (int *) NULL, 1, 0) ? path : NULL);