From: Ilia Alshanetsky Date: Wed, 10 Sep 2003 01:03:41 +0000 (+0000) Subject: #if -> #ifdef X-Git-Tag: php-4.3.4RC1~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0fe9422e400182be0c6f4385d197cdb237cb789;p=php #if -> #ifdef --- diff --git a/ext/standard/file.c b/ext/standard/file.c index 8363666f79..5f31813c54 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -2379,8 +2379,8 @@ PHP_FUNCTION(realpath) convert_to_string_ex(path); if (VCWD_REALPATH(Z_STRVAL_PP(path), resolved_path_buff)) { -#if ZTS -# if PHP_WIN32 +#ifdef ZTS +# ifdef PHP_WIN32 if (_access(resolved_path_buff, 0)) RETURN_FALSE; # else