From: Nuno Lopes Date: Mon, 1 Jun 2009 17:52:29 +0000 (+0000) Subject: MFB: fix compiler warnings by moving all std includes after include of zend_config.h X-Git-Tag: php-5.4.0alpha1~191^2~3430 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3b259d08cd25bbb8281c85a084f6673aaa1eb32;p=php MFB: fix compiler warnings by moving all std includes after include of zend_config.h --- diff --git a/Zend/zend.h b/Zend/zend.h index 8cf757bb46..ed7183fe8e 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -34,9 +34,6 @@ #define END_EXTERN_C() #endif -#include -#include - /* * general definitions */ @@ -68,6 +65,9 @@ /* all HAVE_XXX test have to be after the include of zend_config above */ +#include +#include + #ifdef HAVE_UNIX_H # include #endif