From 965f91bc76b2d1601e23dadec1b6da41c2293236 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 6 Aug 2011 02:55:51 -0700 Subject: [PATCH] Support MSVS --- http_parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_parser.h b/http_parser.h index 5841573..7d39520 100644 --- a/http_parser.h +++ b/http_parser.h @@ -28,7 +28,7 @@ extern "C" { #define HTTP_PARSER_VERSION_MINOR 0 #include -#if defined(_WIN32) && !defined(__MINGW32__) +#if defined(_WIN32) && !defined(__MINGW32__) && !defined(_MSC_VER) typedef __int8 int8_t; typedef unsigned __int8 uint8_t; typedef __int16 int16_t;