diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/tempname.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/tempname.c b/sysdeps/generic/tempname.c index c17d86967d..fb366fcb2b 100644 --- a/sysdeps/generic/tempname.c +++ b/sysdeps/generic/tempname.c @@ -40,11 +40,11 @@ stub_warning (__path_search) in DIR (if applicable), using template TMPL. If OPENIT is 1, open the file and return a fd. If LARGEFILE is 1, use open64() to do that. */ - int - __gen_tempname (tmpl, openit, largefile) +int +__gen_tempname (tmpl, openit, largefile) char *tmpl; int openit; - int large_file; + int largefile; { __set_errno (ENOSYS); return -1; |