diff options
author | Jon Parise <jon@php.net> | 2002-01-27 18:19:18 +0000 |
---|---|---|
committer | Jon Parise <jon@php.net> | 2002-01-27 18:19:18 +0000 |
commit | e40e7a669a13e41950fb9435a2183163f16f0345 (patch) | |
tree | 8c5ec3ae52726bf3188816d14637699da7621abc /ext/standard/math.c | |
parent | ece15242e736b717d86903660a0240236b7ce23f (diff) | |
download | php-git-e40e7a669a13e41950fb9435a2183163f16f0345.tar.gz |
zend_isinf() is already defined in Zend/zend_config.w32.h for Win32.
Diffstat (limited to 'ext/standard/math.c')
-rw-r--r-- | ext/standard/math.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/standard/math.c b/ext/standard/math.c index cfaa7ae964..f108e4f34d 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -34,7 +34,6 @@ #ifdef PHP_WIN32 # define zend_finite(x) _finite(x) # define zend_isnan(x) _isnan(x) -# define zend_isinf(x) _isnan(x) #endif /* {{{ proto int abs(int number) |