OSDN Git Service

* libc/stdio/mktemp.c (mkdtemp): Fix type in function name.
authorcorinna <corinna>
Thu, 13 Aug 2009 07:19:33 +0000 (07:19 +0000)
committercorinna <corinna>
Thu, 13 Aug 2009 07:19:33 +0000 (07:19 +0000)
newlib/ChangeLog
newlib/libc/stdio/mktemp.c

index dd3c66c..c75cd80 100644 (file)
@@ -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
        HAVE_MKDIR is defined.
index 185d9df..25e8a01 100644 (file)
@@ -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);