summaryrefslogtreecommitdiff
path: root/ext/posix/posix.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-04-30 12:45:02 +0000
committerAndi Gutmans <andi@php.net>2001-04-30 12:45:02 +0000
commit4c823e8a895632382de841055fa961ec760d086c (patch)
treed319b78485393d28ee56b4302803bc5155558ba6 /ext/posix/posix.c
parent96330d36bc1146c87a14c7def528e79a4866bee7 (diff)
downloadphp-git-4c823e8a895632382de841055fa961ec760d086c.tar.gz
- Change macros from V_ to VCWD_ because of AIX name clash
Diffstat (limited to 'ext/posix/posix.c')
-rw-r--r--ext/posix/posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/posix/posix.c b/ext/posix/posix.c
index 537ad4bf23..c562b2e2b7 100644
--- a/ext/posix/posix.c
+++ b/ext/posix/posix.c
@@ -632,7 +632,7 @@ PHP_FUNCTION(posix_getcwd)
char buffer[MAXPATHLEN];
char *p;
- p = V_GETCWD(buffer, MAXPATHLEN);
+ p = VCWD_GETCWD(buffer, MAXPATHLEN);
if (!p) {
php_error(E_WARNING, "posix_getcwd() failed with '%s'",
strerror(errno));