diff options
author | Doug Evans <dje@gnu.org> | 1997-07-10 17:03:44 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1997-07-10 17:03:44 +0000 |
commit | ffde607660d5a6523b21440e33a9097b3fbbc40c (patch) | |
tree | 89682687c0a14cd470176fe3f67b064750b8297e /gcc | |
parent | 725303fe99619749d84b240eca7c76019a7bc383 (diff) | |
download | gcc-ffde607660d5a6523b21440e33a9097b3fbbc40c.zip gcc-ffde607660d5a6523b21440e33a9097b3fbbc40c.tar.gz gcc-ffde607660d5a6523b21440e33a9097b3fbbc40c.tar.bz2 |
(INO_T_EQ): Return 0 for MSDOS.
From-SVN: r14408
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cccp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |