diff options
author | Andi Gutmans <andi@php.net> | 2000-04-20 17:40:03 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-04-20 17:40:03 +0000 |
commit | 503bb3bedb847ed99722208da1878ab56f3b5e9d (patch) | |
tree | 40ceec254e6e67d4ddc393ea51f799c2cf6eeb09 /main/php_virtual_cwd.c | |
parent | 883bd2b1de0afae5a3b9f36c0778ba0b08390e25 (diff) | |
download | php-git-503bb3bedb847ed99722208da1878ab56f3b5e9d.tar.gz |
- Export strlcat()/strcpy() for Frank.
- Windows doesn't have lstat().
Diffstat (limited to 'main/php_virtual_cwd.c')
-rw-r--r-- | main/php_virtual_cwd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/php_virtual_cwd.c b/main/php_virtual_cwd.c index a3d98baa21..fdb7685db3 100644 --- a/main/php_virtual_cwd.c +++ b/main/php_virtual_cwd.c @@ -400,6 +400,8 @@ CWD_API int virtual_stat(const char *path, struct stat *buf) return retval; } +#ifndef ZEND_WIN32 + CWD_API int virtual_lstat(const char *path, struct stat *buf) { cwd_state new_state; @@ -415,6 +417,8 @@ CWD_API int virtual_lstat(const char *path, struct stat *buf) return retval; } +#endif + #if 0 main(void) |