aboutsummaryrefslogtreecommitdiff
path: root/gcc/cccp.c
diff options
context:
space:
mode:
authorGeoffrey Noer <noer@cygnus.com>1998-11-12 19:37:47 +0000
committerJim Wilson <wilson@gcc.gnu.org>1998-11-12 11:37:47 -0800
commitcae21ae8a932f5756710da05091238433263c60a (patch)
tree58da5367424fc46a1ddd1b556ccd78b739092602 /gcc/cccp.c
parent15fdcfe952242c2cdf26d6a86281782142162bba (diff)
downloadgcc-cae21ae8a932f5756710da05091238433263c60a.zip
gcc-cae21ae8a932f5756710da05091238433263c60a.tar.gz
gcc-cae21ae8a932f5756710da05091238433263c60a.tar.bz2
Jumbo patch from Geoff Noer to rename CYGWIN32 to CYGWIN.
From-SVN: r23622
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r--gcc/cccp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index e3568da..0d55cec 100644
--- a/gcc/cccp.c
+++ b/gcc/cccp.c
@@ -84,7 +84,7 @@ static int hack_vms_include_specification ();
#endif /* VMS */
/* Windows does not natively support inodes, and neither does MSDOS. */
-#if (defined (_WIN32) && ! defined (CYGWIN32)) || defined (__MSDOS__)
+#if (defined (_WIN32) && ! defined (__CYGWIN__)) || defined (__MSDOS__)
#define INO_T_EQ(a, b) 0
#endif
@@ -4888,10 +4888,10 @@ static int
absolute_filename (filename)
char *filename;
{
-#if defined (__MSDOS__) || (defined (_WIN32) && !defined (__CYGWIN32__))
+#if defined (__MSDOS__) || (defined (_WIN32) && !defined (__CYGWIN__))
if (ISALPHA (filename[0]) && filename[1] == ':') filename += 2;
#endif
-#if defined (__CYGWIN32__)
+#if defined (__CYGWIN__)
/* At present, any path that begins with a drive spec is absolute. */
if (ISALPHA (filename[0]) && filename[1] == ':') return 1;
#endif