Commit ffde6076 by Doug Evans

(INO_T_EQ): Return 0 for MSDOS.

From-SVN: r14408
parent 725303fe
...@@ -233,8 +233,8 @@ static void hack_vms_include_specification (); ...@@ -233,8 +233,8 @@ static void hack_vms_include_specification ();
#define INCLUDE_LEN_FUDGE 12 /* leave room for VMS syntax conversion */ #define INCLUDE_LEN_FUDGE 12 /* leave room for VMS syntax conversion */
#endif /* VMS */ #endif /* VMS */
/* Windows does not natively support inodes */ /* Windows does not natively support inodes, and neither does MSDOS. */
#if defined (_WIN32) && ! defined (CYGWIN32) #if (defined (_WIN32) && ! defined (CYGWIN32)) || defined (__MSDOS__)
#define INO_T_EQ(a, b) 0 #define INO_T_EQ(a, b) 0
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment