From f71dec453c3365066b9a691e6caf0d301246d317 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 27 Jun 1997 18:11:41 -0400 Subject: [PATCH] (INO_T_EQ): Define for Win32 but not Cygwin32. From-SVN: r14339 --- gcc/cccp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gcc/cccp.c b/gcc/cccp.c index 828c0a9d407..5e132275f11 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -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 -- 2.30.2