From: Sascha Schumann Date: Sun, 20 Aug 2000 06:09:07 +0000 (+0000) Subject: Including math.h before using macros defined there will work better :) X-Git-Tag: php-4.0.2RC1~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6aada077a056fd1379a45bfbfe1678c5e7ca2035;p=php Including math.h before using macros defined there will work better :) --- diff --git a/Zend/acconfig.h b/Zend/acconfig.h index 0d6d84b54e..2686ae8af8 100644 --- a/Zend/acconfig.h +++ b/Zend/acconfig.h @@ -35,6 +35,8 @@ int zend_sprintf(char *buffer, const char *format, ...); # define zend_sprintf sprintf #endif +#include + #ifdef HAVE_ISNAN #define zend_isnan(a) isnan(a) #elif defined(NAN) @@ -52,8 +54,6 @@ int zend_sprintf(char *buffer, const char *format, ...); #define zend_isinf(a) 0 #endif -#include - #ifdef HAVE_FINITE #define zend_finite(a) finite(a) #elif defined(HAVE_ISFINITE)