diff options
author | Pierre Joye <pajoye@php.net> | 2008-07-05 18:51:17 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-07-05 18:51:17 +0000 |
commit | 5627ff52f0cd3036b8e791d0b4b145aea84f317e (patch) | |
tree | 3a1e26634305f729704c2b7289766fe8adb2243d | |
parent | 98ce717bf28caee13e1f42dccc398305c4646624 (diff) | |
download | php-git-5627ff52f0cd3036b8e791d0b4b145aea84f317e.tar.gz |
- MFH: don't redefine WINDOWS and pid_t
-rw-r--r-- | main/win95nt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/win95nt.h b/main/win95nt.h index 695d1eb2d5..ee824025b7 100644 --- a/main/win95nt.h +++ b/main/win95nt.h @@ -74,7 +74,10 @@ typedef long pid_t; #endif /* General Windows stuff */ -#define WINDOWS 1 +#ifndef WINDOWS +# define WINDOWS 1 +#endif + /* Prevent use of VC5 OpenFile function */ #define NOOPENFILE |