diff options
author | Geoffrey Noer <noer@cygnus.com> | 1998-11-12 19:37:47 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-11-12 11:37:47 -0800 |
commit | cae21ae8a932f5756710da05091238433263c60a (patch) | |
tree | 58da5367424fc46a1ddd1b556ccd78b739092602 /gcc/cccp.c | |
parent | 15fdcfe952242c2cdf26d6a86281782142162bba (diff) | |
download | gcc-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |