diff options
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/main/php.h b/main/php.h index 906fca8811..65b25739c7 100644 --- a/main/php.h +++ b/main/php.h @@ -337,7 +337,8 @@ PHPAPI int cfg_get_string(char *varname, char **result); #ifndef PHP_WIN32 #define V_CHOWN(path,owner,group) virtual_chown(path,owner,group) #endif -#else + +#else /* !defined(VIRTUAL_DIR) */ #define V_GETCWD(buff, size) getcwd(buff,size) #define V_FOPEN(path, mode) fopen(path, mode) @@ -361,7 +362,8 @@ PHPAPI int cfg_get_string(char *varname, char **result); #ifndef PHP_WIN32 #define V_CHOWN(path,owner,group) chown(path,owner,group) #endif -#endif + +#endif /* VIRTUAL_DIR */ #include "zend_constants.h" |