From: Sascha Schumann Date: Sun, 20 Aug 2000 08:31:34 +0000 (+0000) Subject: _isnan seems to be supported on Win32, add an appropiate macro. X-Git-Tag: php-4.0.2RC1~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b9f9fa4dd2fec14871dc00f2b5db7c51ee5de00;p=php _isnan seems to be supported on Win32, add an appropiate macro. --- diff --git a/Zend/zend_config.w32.h b/Zend/zend_config.w32.h index b228fe1ebb..29da773d7f 100644 --- a/Zend/zend_config.w32.h +++ b/Zend/zend_config.w32.h @@ -64,6 +64,7 @@ typedef unsigned int uint; #endif #define zend_finite(A) _finite(A) +#define zend_isnan(A) _isnan(A) #ifdef LIBZEND_EXPORTS # define ZEND_API __declspec(dllexport)