aboutsummaryrefslogtreecommitdiff
path: root/gcc/getpwd.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/getpwd.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/getpwd.c')
-rw-r--r--gcc/getpwd.c6
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__ */