summaryrefslogtreecommitdiff
path: root/ext/posix/posix.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-04-15 14:28:48 +0000
committerAndi Gutmans <andi@php.net>2000-04-15 14:28:48 +0000
commitc9911a151ed19e7569fbcb9afc7bd9a390202256 (patch)
treeb50abaa01563766d9e67107af6a53574de1e3bc7 /ext/posix/posix.c
parent1665cba750539a4245cf600bacdff3f74fe7bbfd (diff)
downloadphp-git-c9911a151ed19e7569fbcb9afc7bd9a390202256.tar.gz
- Change PHP_ to V_ (directory & file functions)
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 dbbe242ab5..ca637f5732 100644
--- a/ext/posix/posix.c
+++ b/ext/posix/posix.c
@@ -571,7 +571,7 @@ PHP_FUNCTION(posix_getcwd)
char buffer[MAXPATHLEN];
char *p;
- p = PHP_GETCWD(buffer, MAXPATHLEN);
+ p = V_GETCWD(buffer, MAXPATHLEN);
if (!p) {
php_error(E_WARNING, "posix_getcwd() failed with '%s'",
strerror(errno));