summaryrefslogtreecommitdiff
path: root/misc/mkdtemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/mkdtemp.c')
-rw-r--r--misc/mkdtemp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/mkdtemp.c b/misc/mkdtemp.c
index 1f733cdfaa..1da10629ce 100644
--- a/misc/mkdtemp.c
+++ b/misc/mkdtemp.c
@@ -24,8 +24,7 @@
The directory is created, mode 700, and its name is returned.
(This function comes from OpenBSD.) */
char *
-mkdtemp (template)
- char *template;
+mkdtemp (char *template)
{
if (__gen_tempname (template, 0, 0, __GT_DIR))
return NULL;