summaryrefslogtreecommitdiff
path: root/ext/standard/filestat.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-02-11 15:59:30 +0000
committerZeev Suraski <zeev@php.net>2000-02-11 15:59:30 +0000
commit80bdd19e031ca0dac2dfd4cb62ff43558d477663 (patch)
tree539fd5059d50e32acf9b991354d48cbcecb16426 /ext/standard/filestat.c
parent80f4886c5a71b0cdc4a3159297160e30ddd298cb (diff)
downloadphp-git-80bdd19e031ca0dac2dfd4cb62ff43558d477663.tar.gz
Fine tune Andi's patch
Diffstat (limited to 'ext/standard/filestat.c')
-rw-r--r--ext/standard/filestat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c
index e10ba6f7e2..dbbf472993 100644
--- a/ext/standard/filestat.c
+++ b/ext/standard/filestat.c
@@ -46,7 +46,7 @@
#endif
#if HAVE_PWD_H
-# if PHP_WIN32
+# ifdef PHP_WIN32
# include "win32/pwd.h"
# else
# include <pwd.h>
@@ -54,7 +54,7 @@
#endif
#if HAVE_GRP_H
-# if PHP_WIN32
+# ifdef PHP_WIN32
# include "win32/grp.h"
# else
# include <grp.h>
@@ -62,7 +62,7 @@
#endif
#if HAVE_UTIME
-# if PHP_WIN32
+# ifdef PHP_WIN32
# include <sys/utime.h>
# else
# include <utime.h>