diff options
author | Scott MacVicar <scottmac@php.net> | 2008-12-17 15:46:21 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2008-12-17 15:46:21 +0000 |
commit | 6393540c75030a3c534be0592e447e1805acb8d4 (patch) | |
tree | 8ead1343ff4765a4fccd52df94870e5e9a1e4926 /ext | |
parent | fee9ce41f3066b2dd49483ebdfa5d23e3a24cf6c (diff) | |
download | php-git-6393540c75030a3c534be0592e447e1805acb8d4.tar.gz |
MFH Fix Windows build
Diffstat (limited to 'ext')
-rw-r--r-- | ext/json/JSON_parser.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/json/JSON_parser.c b/ext/json/JSON_parser.c index 5174fb756e..95a7ffba1f 100644 --- a/ext/json/JSON_parser.c +++ b/ext/json/JSON_parser.c @@ -29,6 +29,9 @@ SOFTWARE. #include <stdio.h> #include "JSON_parser.h" +/* Windows defines IN for documentation */ +#undef IN + #define true 1 #define false 0 #define __ -1 /* the universal error code */ |