From: Anantha Kesari H Y Date: Wed, 22 Sep 2004 12:45:28 +0000 (+0000) Subject: enabled macros to call the proper LibC functions X-Git-Tag: PRE_NEW_VM_GEN_PATCH~259 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fe1927183e227049bbe55426405a2ae157dcf2d;p=php enabled macros to call the proper LibC functions --- diff --git a/Zend/acconfig.h b/Zend/acconfig.h index a273b95748..6bb0d4bae7 100644 --- a/Zend/acconfig.h +++ b/Zend/acconfig.h @@ -65,6 +65,13 @@ int zend_sprintf(char *buffer, const char *format, ...); #include +/* To enable the is_nan, is_infinite and is_finite PHP functions */ +#ifdef NETWARE + #define HAVE_ISNAN 1 + #define HAVE_ISINF 1 + #define HAVE_ISFINITE 1 +#endif + #ifndef zend_isnan #ifdef HAVE_ISNAN #define zend_isnan(a) isnan(a)