From 4c823e8a895632382de841055fa961ec760d086c Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Mon, 30 Apr 2001 12:45:02 +0000 Subject: - Change macros from V_ to VCWD_ because of AIX name clash --- ext/swf/swf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/swf/swf.c') 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)); } } /* }}} */ -- cgit v1.2.1