Changeset 2603


Ignore:
Timestamp:
Mar 10, 2006, 12:59:19 AM (19 years ago)
Author:
bird
Message:

\r\n => \r workaround for input file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/coreutils/src/ptx.c

    r2554 r2603  
    566566#endif /* not MSDOS */
    567567
     568#ifdef __EMX__
     569          /* Basically same as the MSDOS hack, only we use tell() to check. */
     570          if (in_memory_size != (size_t)-1
     571              && stat_block.st_size == tell (file_handle))
     572            block->start = xrealloc (block->start, in_memory_size);
     573          else
     574#endif
    568575            error (EXIT_FAILURE, errno, "%s", file_name);
    569576        }
Note: See TracChangeset for help on using the changeset viewer.