changeset 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 4dbaa2bfab6e
children 92c501ecca49
files src/fileio.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)
     {