diff options
Diffstat (limited to 'libc/stdlib/mkostemp64.c')
-rw-r--r-- | libc/stdlib/mkostemp64.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/stdlib/mkostemp64.c b/libc/stdlib/mkostemp64.c index 5509d8c1b..d21def58a 100644 --- a/libc/stdlib/mkostemp64.c +++ b/libc/stdlib/mkostemp64.c @@ -25,9 +25,7 @@ they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkostemp64 (template, flags) - char *template; - int flags; +mkostemp64 (char *template, int flags) { return __gen_tempname (template, __GT_BIGFILE, flags | O_LARGEFILE); } |