From: Nuno Lopes Date: Mon, 1 Jun 2009 17:51:53 +0000 (+0000) Subject: fix compiler warnings by moving all std includes after include of zend_config.h. X-Git-Tag: php-5.3.0RC3~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95ef46c0340243c9fb53993ba96e607414b8d6b1;p=php fix compiler warnings by moving all std includes after include of zend_config.h. this also fixes the build with stricter compilers than gcc (like clang) --- diff --git a/Zend/zend.h b/Zend/zend.h index 935e113241..eaef7f182f 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -34,8 +34,6 @@ #define END_EXTERN_C() #endif -#include - /* * general definitions */ @@ -67,6 +65,8 @@ /* all HAVE_XXX test have to be after the include of zend_config above */ +#include + #ifdef HAVE_UNIX_H # include #endif