]> granicus.if.org Git - php/commitdiff
#if -> #ifdef
authorIlia Alshanetsky <iliaa@php.net>
Wed, 10 Sep 2003 01:03:41 +0000 (01:03 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Wed, 10 Sep 2003 01:03:41 +0000 (01:03 +0000)
ext/standard/file.c

index 8363666f79b210fd653db73e395f6cb0af2dbff0..5f31813c54ab43c3482bf9c1a04414bd2afb7b60 100644 (file)
@@ -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