home *** CD-ROM | disk | FTP | other *** search
- *** orig/gas-211/gas/output-f.c Sun May 30 15:11:44 1993
- --- src/gas-211/gas/output-f.c Sun May 30 15:12:32 1993
- ***************
- *** 108,114 ****
- --- 108,118 ----
- {
- if (name[0] == '-' && name[1] == '\0')
- stdoutput = stdout;
- + #ifdef __MSDOS__
- + else if (!(stdoutput = fopen (name, "wb")))
- + #else
- else if (!(stdoutput = fopen (name, "w")))
- + #endif
- {
- as_perror ("FATAL: Can't create %s", name);
- exit (42);
-