From 24be793f64c82b4c8d38c2d048c43ec78c82e5d8 Mon Sep 17 00:00:00 2001 From: Ewen Cheslack-Postava Date: Wed, 3 Nov 2010 00:51:37 -0700 Subject: [PATCH] Provide typedefs instead of using stdint.h on Windows. --- http_parser.c | 10 ---------- http_parser.h | 13 +++++++++++-- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/http_parser.c b/http_parser.c index 02532d3..ac511f6 100644 --- a/http_parser.c +++ b/http_parser.c @@ -19,16 +19,6 @@ * IN THE SOFTWARE. */ #include -#ifdef _WIN32 -typedef __int8 int8_t; -typedef unsigned __int8 uint8_t; -typedef __int16 int16_t; -typedef unsigned __int16 uint16_t; -typedef __int16 int32_t; -typedef unsigned __int32 uint32_t; -#else -#include -#endif #include #include diff --git a/http_parser.h b/http_parser.h index 793089a..d46f442 100644 --- a/http_parser.h +++ b/http_parser.h @@ -26,11 +26,20 @@ extern "C" { #include -#include - #ifdef _WIN32 +typedef __int8 int8_t; +typedef unsigned __int8 uint8_t; +typedef __int16 int16_t; +typedef unsigned __int16 uint16_t; +typedef __int32 int32_t; +typedef unsigned __int32 uint32_t; +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; + typedef unsigned int size_t; typedef int ssize_t; +#else +#include #endif /* Compile with -DHTTP_PARSER_STRICT=0 to make less checks, but run