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/getpwd.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/getpwd.c')
-rw-r--r-- | gcc/getpwd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/getpwd.c b/gcc/getpwd.c index 947383e..69f8c82 100644 --- a/gcc/getpwd.c +++ b/gcc/getpwd.c @@ -22,7 +22,7 @@ char *xmalloc (); -#if !(defined (VMS) || (defined(_WIN32) && !defined(__CYGWIN32__))) +#if !(defined (VMS) || (defined(_WIN32) && !defined(__CYGWIN__))) /* Get the working directory. Use the PWD environment variable if it's set correctly, since this is faster and gives more uniform answers @@ -70,7 +70,7 @@ getpwd () return p; } -#else /* VMS || _WIN32 && !__CYGWIN32__ */ +#else /* VMS || _WIN32 && !__CYGWIN__ */ #ifndef MAXPATHLEN #define MAXPATHLEN 255 @@ -90,4 +90,4 @@ getpwd () return pwd; } -#endif /* VMS || _WIN32 && !__CYGWIN32__ */ +#endif /* VMS || _WIN32 && !__CYGWIN__ */ |