diff options
author | Sascha Schumann <sas@php.net> | 2000-08-20 12:49:56 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-08-20 12:49:56 +0000 |
commit | c86ec8b1a95e9c4716bffff816427419f295183c (patch) | |
tree | 48b4a567071ff1a70cc840c614b251b02afad4f0 /main/php.h | |
parent | f75db1e3cbbdf5b5e7101dc393627f5241b41490 (diff) | |
download | php-git-c86ec8b1a95e9c4716bffff816427419f295183c.tar.gz |
Add virtual_real_chdir_file. Silly name for a useful function.
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 0fa464dc14..b0b25500d5 100644 --- a/main/php.h +++ b/main/php.h @@ -324,7 +324,7 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define V_OPEN(open_args) open open_args #define V_CREAT(path, mode) creat(path, mode) #define V_CHDIR(path) chdir(path) -#define V_CHDIR_FILE(path) chdir_file(path) +#define V_CHDIR_FILE(path) virtual_real_chdir_file(path) #define V_GETWD(buf) getwd(buf) #define V_STAT(path, buff) stat(path, buff) #define V_LSTAT(path, buff) lstat(path, buff) |