summaryrefslogtreecommitdiff
path: root/ext/standard/crypt.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/crypt.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/crypt.c')
-rw-r--r--ext/standard/crypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/crypt.c b/ext/standard/crypt.c
index a3fe1d4da7..fa217796dd 100644
--- a/ext/standard/crypt.c
+++ b/ext/standard/crypt.c
@@ -41,7 +41,7 @@
#include <strings.h>
#endif
-#if MSVC5
+#if PHP_WIN32
#include <process.h>
extern char *crypt(char *__key,char *__salt);
#endif