diff options
author | Michael Wallner <mike@php.net> | 2013-08-06 22:45:35 +0200 |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2013-08-06 22:49:56 +0200 |
commit | 14caf174ff219376e4f1234bd297ffe973cc416e (patch) | |
tree | 73532567f2c68b42ad55efbbaf1d85d7f81f6255 /sapi/cli/php_http_parser.h | |
parent | ca0497bba2222c282c39048776a9f61052e67643 (diff) | |
download | php-git-14caf174ff219376e4f1234bd297ffe973cc416e.tar.gz |
unify stdint type usage
if you need C99 stdint types, just include "php_stdint.h"
Diffstat (limited to 'sapi/cli/php_http_parser.h')
-rw-r--r-- | sapi/cli/php_http_parser.h | 6 |
1 files changed, 2 insertions, 4 deletions
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 <sys/types.h> #if defined(_WIN32) && !defined(__MINGW32__) # include <windows.h> -# include "win32/php_stdint.h" # include "config.w32.h" #else # include "php_config.h" -# ifdef HAVE_STDINT_H -# include <stdint.h> -# endif #endif +#include "php_stdint.h" + /* Compile with -DPHP_HTTP_PARSER_STRICT=0 to make less checks, but run * faster */ |