diff options
Diffstat (limited to 'stdio-common/tempname.c')
-rw-r--r-- | stdio-common/tempname.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/stdio-common/tempname.c b/stdio-common/tempname.c index 4aef3bc241..8525ab6e91 100644 --- a/stdio-common/tempname.c +++ b/stdio-common/tempname.c @@ -24,12 +24,8 @@ template suitable for use in __gen_tempname into TMPL, bounded by TMPL_LEN. */ int -__path_search (tmpl, tmpl_len, dir, pfx, try_tmpdir) - char *tmpl; - size_t tmpl_len; - const char *dir; - const char *pfx; - int try_tmpdir; +__path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx, + int try_tmpdir) { __set_errno (ENOSYS); return -1; |