summaryrefslogtreecommitdiff
path: root/ext/swf
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/swf
parent96330d36bc1146c87a14c7def528e79a4866bee7 (diff)
downloadphp-git-4c823e8a895632382de841055fa961ec760d086c.tar.gz
- Change macros from V_ to VCWD_ because of AIX name clash
Diffstat (limited to 'ext/swf')
-rw-r--r--ext/swf/swf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/swf/swf.c b/ext/swf/swf.c
index 820d082042..b81e9f7c94 100644
--- a/ext/swf/swf.c
+++ b/ext/swf/swf.c
@@ -190,7 +190,7 @@ PHP_FUNCTION(swf_openfile)
free_na = 0;
RETURN_FALSE;
}
- V_UNLINK((const char *)na);
+ VCWD_UNLINK((const char *)na);
fclose(fp);
free_na = 1;
SWFG(use_file) = 0;
@@ -236,7 +236,7 @@ PHP_FUNCTION(swf_closefile)
char buf[4096];
int b;
- if ((f = V_FOPEN(SWFG(tmpfile_name), "r")) == NULL) {
+ if ((f = VCWD_FOPEN(SWFG(tmpfile_name), "r")) == NULL) {
php_error(E_WARNING, "Cannot create temporary file for stdout support with SWF");
RETURN_NULL();
}
@@ -246,7 +246,7 @@ PHP_FUNCTION(swf_closefile)
fclose(f);
- V_UNLINK((const char *)SWFG(tmpfile_name));
+ VCWD_UNLINK((const char *)SWFG(tmpfile_name));
}
}
/* }}} */