From ffde607660d5a6523b21440e33a9097b3fbbc40c Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Thu, 10 Jul 1997 17:03:44 +0000 Subject: [PATCH] (INO_T_EQ): Return 0 for MSDOS. From-SVN: r14408 --- gcc/cccp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/cccp.c b/gcc/cccp.c index 5e132275f11..0df37379490 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -233,8 +233,8 @@ 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) +/* Windows does not natively support inodes, and neither does MSDOS. */ +#if (defined (_WIN32) && ! defined (CYGWIN32)) || defined (__MSDOS__) #define INO_T_EQ(a, b) 0 #endif -- 2.30.2