summaryrefslogtreecommitdiff
path: root/ext/standard/link.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-02-10 21:53:56 +0000
committerAndi Gutmans <andi@php.net>2000-02-10 21:53:56 +0000
commit29280bb9ecbc459c0005a48001f5dd1a62963cd6 (patch)
treec9cc25e5e1a10ec30c8ab4b7637d2af05e108eb9 /ext/standard/link.c
parent732eeeabd9032537ddef3a6c8ef83064501c463f (diff)
downloadphp-git-29280bb9ecbc459c0005a48001f5dd1a62963cd6.tar.gz
- Get rid of some more evil MSVC5's and switch standard/ to use PHP_WIN32
Diffstat (limited to 'ext/standard/link.c')
-rw-r--r--ext/standard/link.c4
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>