diff options
Diffstat (limited to 'gas/output-file.c')
-rw-r--r-- | gas/output-file.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gas/output-file.c b/gas/output-file.c index 531e35f..304e904 100644 --- a/gas/output-file.c +++ b/gas/output-file.c @@ -41,8 +41,7 @@ bfd *stdoutput; void -output_file_create (name) - char *name; +output_file_create (char *name) { if (name[0] == '-' && name[1] == '\0') as_fatal (_("can't open a bfd on stdout %s"), name); @@ -62,8 +61,7 @@ output_file_create (name) } void -output_file_close (filename) - char *filename; +output_file_close (char *filename) { #ifdef BFD_ASSEMBLER /* Close the bfd. */ |