diff options
Diffstat (limited to 'deps/http_parser/http_parser.h')
-rw-r--r-- | deps/http_parser/http_parser.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/deps/http_parser/http_parser.h b/deps/http_parser/http_parser.h index 793089a67d..d46f4426bc 100644 --- a/deps/http_parser/http_parser.h +++ b/deps/http_parser/http_parser.h @@ -26,11 +26,20 @@ extern "C" { #include <sys/types.h> -#include <stdint.h> - #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 <stdint.h> #endif /* Compile with -DHTTP_PARSER_STRICT=0 to make less checks, but run |