From 14caf174ff219376e4f1234bd297ffe973cc416e Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 6 Aug 2013 22:45:35 +0200 Subject: unify stdint type usage if you need C99 stdint types, just include "php_stdint.h" --- sapi/cli/php_http_parser.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sapi/cli/php_http_parser.h') diff --git a/sapi/cli/php_http_parser.h b/sapi/cli/php_http_parser.h index 2bf2356725..31502e213a 100644 --- a/sapi/cli/php_http_parser.h +++ b/sapi/cli/php_http_parser.h @@ -29,15 +29,13 @@ extern "C" { #include #if defined(_WIN32) && !defined(__MINGW32__) # include -# include "win32/php_stdint.h" # include "config.w32.h" #else # include "php_config.h" -# ifdef HAVE_STDINT_H -# include -# endif #endif +#include "php_stdint.h" + /* Compile with -DPHP_HTTP_PARSER_STRICT=0 to make less checks, but run * faster */ -- cgit v1.2.1