diff options
author | Zeev Suraski <zeev@php.net> | 2000-12-27 15:43:05 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-12-27 15:43:05 +0000 |
commit | 338b9b08195517b8996e85977f3970667b0c9c4c (patch) | |
tree | 753984e3cf9933b383eb52a2445f72cea0480cc7 /ext/standard/file.c | |
parent | 34f5c0c36d03f92c30c4d8e36007e33d826438ac (diff) | |
download | php-git-338b9b08195517b8996e85977f3970667b0c9c4c.tar.gz |
- Make the INI mechanism thread safe (fix necessary API changes from Zend)
- Make the Win32 non-TS configuration build again
Diffstat (limited to 'ext/standard/file.c')
-rw-r--r-- | ext/standard/file.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index 6eab2d14db..fe59cd77d8 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -1924,6 +1924,8 @@ PHP_FUNCTION(fgetcsv) { /* }}} */ + +#if !defined(PHP_WIN32) || defined(ZTS) /* {{{ proto string realpath(string path) Return the resolved path */ PHP_FUNCTION(realpath) @@ -1944,6 +1946,8 @@ PHP_FUNCTION(realpath) } } /* }}} */ +#endif + #if 0 |