From 95ef46c0340243c9fb53993ba96e607414b8d6b1 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Mon, 1 Jun 2009 17:51:53 +0000 Subject: [PATCH] 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) --- Zend/zend.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.40.0