diff src/fileio.c @ 21739:e02be2b47d18

(Fcopy_file): Skip dev/inode check on Windows.
author Geoff Voelker <voelker@cs.washington.edu>
date Thu, 23 Apr 1998 23:42:09 +0000
parents 89e327fdea93
children ee3aed578b1d
line wrap: on
line diff
--- a/src/fileio.c	Thu Apr 23 23:41:42 1998 +0000
+++ b/src/fileio.c	Thu Apr 23 23:42:09 1998 +0000
@@ -2229,7 +2229,7 @@
      copyable by us. */
   input_file_statable_p = (fstat (ifd, &st) >= 0);
 
-#if !defined (MSDOS) || __DJGPP__ > 1
+#if !defined (DOS_NT) || __DJGPP__ > 1
   if (out_st.st_mode != 0
       && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
     {