unify stdint type usage

if you need C99 stdint types, just include "php_stdint.h"
This commit is contained in:
Michael Wallner 2013-08-06 22:45:35 +02:00
parent ca0497bba2
commit 14caf174ff
24 changed files with 242 additions and 271 deletions

View file

@ -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
*/