summaryrefslogtreecommitdiff
path: root/misc/mkdtemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/mkdtemp.c')
-rw-r--r--misc/mkdtemp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/mkdtemp.c b/misc/mkdtemp.c
index 1f733cdfaa..34dde72d42 100644
--- a/misc/mkdtemp.c
+++ b/misc/mkdtemp.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1999-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -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;