From 6e39ff27ae3ce588a2dc0b1dc1dbac08fe718953 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 8 Aug 2001 01:10:17 +0000 Subject: * output-file.c (output_file_create): Don't try to open using FOPEN_W as it's unnecessary and VMS doesn't define FOPEN_W. --- gas/output-file.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'gas/output-file.c') diff --git a/gas/output-file.c b/gas/output-file.c index de1dcbf6ed..531e35fa69 100644 --- a/gas/output-file.c +++ b/gas/output-file.c @@ -110,12 +110,6 @@ output_file_create (name) } stdoutput = fopen (name, FOPEN_WB); - - /* Some systems don't grok "b" in fopen modes. */ - /* XXX - is this still necessary now that we use FOPEN_WB ? */ - if (stdoutput == NULL) - stdoutput = fopen (name, FOPEN_W); - if (stdoutput == NULL) { as_perror (_("FATAL: can't create %s"), name); -- cgit v1.2.1