diff options
Diffstat (limited to 'ext/standard/link.c')
-rw-r--r-- | ext/standard/link.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/link.c b/ext/standard/link.c index 8f8cd487a7..6e7e0da855 100644 --- a/ext/standard/link.c +++ b/ext/standard/link.c @@ -29,14 +29,14 @@ #include <sys/stat.h> #include <string.h> #if HAVE_PWD_H -#if MSVC5 +#if PHP_WIN32 #include "win32/pwd.h" #else #include <pwd.h> #endif #endif #if HAVE_GRP_H -#if MSVC5 +#if PHP_WIN32 #include "win32/grp.h" #else #include <grp.h> |