OSDN Git Service

(INO_T_EQ): Define for Win32 but not Cygwin32.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 Jun 1997 22:11:41 +0000 (22:11 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 Jun 1997 22:11:41 +0000 (22:11 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14339 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cccp.c

index 828c0a9..5e13227 100644 (file)
@@ -233,6 +233,11 @@ static void hack_vms_include_specification ();
 #define INCLUDE_LEN_FUDGE 12   /* leave room for VMS syntax conversion */
 #endif /* VMS */
 
+/* Windows does not natively support inodes */
+#if defined (_WIN32) && ! defined (CYGWIN32)
+#define INO_T_EQ(a, b) 0
+#endif
+
 #ifndef O_RDONLY
 #define O_RDONLY 0
 #endif