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_virtual_cwd.c | |
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_virtual_cwd.c')
-rw-r--r-- | main/php_virtual_cwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_virtual_cwd.c b/main/php_virtual_cwd.c index 9514ab49f2..8dd87dc57e 100644 --- a/main/php_virtual_cwd.c +++ b/main/php_virtual_cwd.c @@ -211,7 +211,7 @@ CWD_API char *virtual_getcwd(char *buf, size_t size) /* returns 0 for ok, 1 for error */ -static int virtual_file_ex(cwd_state *state, const char *path, verify_path_func verify_path) +CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func verify_path) { int path_length = strlen(path); char *ptr, *path_copy; |