diff options
Diffstat (limited to 'misc/mktemp.c')
-rw-r--r-- | misc/mktemp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/mktemp.c b/misc/mktemp.c index 763dee8c3d..940e99c04e 100644 --- a/misc/mktemp.c +++ b/misc/mktemp.c @@ -22,8 +22,7 @@ The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the filename unique. */ char * -__mktemp (template) - char *template; +__mktemp (char *template) { if (__gen_tempname (template, 0, 0, __GT_NOCREATE) < 0) /* We return the null string if we can't find a unique file name. */ |