aboutsummaryrefslogtreecommitdiff
path: root/misc/mkstemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/mkstemp.c')
-rw-r--r--misc/mkstemp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/mkstemp.c b/misc/mkstemp.c
index c5018d1..638115f 100644
--- a/misc/mkstemp.c
+++ b/misc/mkstemp.c
@@ -27,8 +27,7 @@
they are replaced with a string that makes the filename unique.
Then open the file and return a fd. */
int
-mkstemp (template)
- char *template;
+mkstemp (char *template)
{
return __gen_tempname (template, 0, 0, __GT_FILE);
}