diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-12 19:37:47 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-12 19:37:47 +0000 |
commit | e678484ce65d0936cf542dfac80e0d25648b500d (patch) | |
tree | 58da5367424fc46a1ddd1b556ccd78b739092602 /gcc/cccp.c | |
parent | 414a3558d3680ef9066c3589e0619283be8f442b (diff) | |
download | gcc-e678484ce65d0936cf542dfac80e0d25648b500d.tar.gz |
Jumbo patch from Geoff Noer to rename CYGWIN32 to CYGWIN.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23622 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r-- | gcc/cccp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c index e3568daa567..0d55cec2d5c 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 |