diff options
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 291390f41b..7b9a642191 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -23,8 +23,8 @@ #include "zend.h" -#if HAVE_STDARG_H -#include <stdarg.h> +#ifdef HAVE_STDARG_H +# include <stdarg.h> #endif #include "zend_llist.h" @@ -34,9 +34,9 @@ #define DEBUG_ZEND 0 #ifndef ZTS -#define SUPPORT_INTERACTIVE 1 +# define SUPPORT_INTERACTIVE 1 #else -#define SUPPORT_INTERACTIVE 0 +# define SUPPORT_INTERACTIVE 0 #endif #define FREE_PNODE(znode) zval_dtor(&znode->u.constant); |