diff options
-rw-r--r-- | ext/standard/math.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/standard/math.c b/ext/standard/math.c index f108e4f34d..d594a5a21e 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -31,11 +31,6 @@ #define M_PI 3.14159265358979323846 #endif -#ifdef PHP_WIN32 -# define zend_finite(x) _finite(x) -# define zend_isnan(x) _isnan(x) -#endif - /* {{{ proto int abs(int number) Return the absolute value of the number */ |