diff options
author | Andi Gutmans <andi@php.net> | 2000-04-09 19:54:50 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-04-09 19:54:50 +0000 |
commit | c981be0bca1e37754de77c500b962ec277860013 (patch) | |
tree | 7d35a2c788624ecc7824939f614eab242f761a51 /main/php.h | |
parent | 4cdcf638ce793d10e879c8481d88284aef8d914f (diff) | |
download | php-git-c981be0bca1e37754de77c500b962ec277860013.tar.gz |
- Don't need to extern functions
- Use virtual_file_ex() in expand_filepath()
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php.h b/main/php.h index 6aee80c41f..c1ab278232 100644 --- a/main/php.h +++ b/main/php.h @@ -285,10 +285,10 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define PUTC_H(c) (php_header_write(&(c), 1), (c)) #define VIRTUAL_DIR +#include "php_virtual_cwd.h" /* Virtual current directory support */ #ifdef VIRTUAL_DIR -#include "php_virtual_cwd.h" #define PHP_GETCWD(buff, size) virtual_getcwd(buff,size) #define PHP_FOPEN(path, mode) virtual_fopen(path, mode) #define PHP_CHDIR(path) virtual_chdir(path) |