home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / diffs / gas-211 / gas / output-f.c < prev   
Encoding:
Text File  |  1993-11-28  |  462 b   |  17 lines

  1. *** orig/gas-211/gas/output-f.c    Sun May 30 15:11:44 1993
  2. --- src/gas-211/gas/output-f.c    Sun May 30 15:12:32 1993
  3. ***************
  4. *** 108,114 ****
  5. --- 108,118 ----
  6.   {
  7.     if (name[0] == '-' && name[1] == '\0')
  8.       stdoutput = stdout;
  9. + #ifdef __MSDOS__
  10. +   else if (!(stdoutput = fopen (name, "wb")))
  11. + #else
  12.     else if (!(stdoutput = fopen (name, "w")))
  13. + #endif
  14.       {
  15.         as_perror ("FATAL: Can't create %s", name);
  16.         exit (42);
  17.