Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-08-13 11:19:33 +0400
committerCorinna Vinschen <corinna@vinschen.de>2009-08-13 11:19:33 +0400
commit61189f19de6175e82cdb43c2ff5ed50f953ba3fa (patch)
tree1662d4dd25f888a2fe0fa3929aea79e25a189ea7 /newlib/libc/stdio
parentee47ad3213f131d67c36a089a2be83016696882f (diff)
* libc/stdio/mktemp.c (mkdtemp): Fix type in function name.
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r--newlib/libc/stdio/mktemp.c2
1 files changed, 1 insertions, 1 deletions
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);