|
|
|
@ -308,6 +308,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); |
|
|
|
#else |
|
|
|
#define V_LSTAT(path, buff) virtual_lstat(path, buff) |
|
|
|
#endif |
|
|
|
#define V_UNLINK(path) virtual_unlink(path) |
|
|
|
#else |
|
|
|
#define V_GETCWD(buff, size) getcwd(buff,size) |
|
|
|
#define V_FOPEN(path, mode) fopen(path, mode) |
|
|
|
@ -318,6 +319,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); |
|
|
|
#define V_GETWD(buf) getwd(buf) |
|
|
|
#define V_STAT(path, buff) stat(path, buff) |
|
|
|
#define V_LSTAT(path, buff) lstat(path, buff) |
|
|
|
#define V_UNLINK(path) unlink(path) |
|
|
|
#endif |
|
|
|
|
|
|
|
#include "zend_constants.h" |
|
|
|
|