From: Doug Evans Date: Thu, 10 Jul 1997 17:03:44 +0000 (+0000) Subject: (INO_T_EQ): Return 0 for MSDOS. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ffde607660d5a6523b21440e33a9097b3fbbc40c;p=gcc.git (INO_T_EQ): Return 0 for MSDOS. From-SVN: r14408 --- 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