diff options
author | Thies C. Arntzen <thies@php.net> | 2000-04-17 13:25:16 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-04-17 13:25:16 +0000 |
commit | 44e0d27685435959db4e5598e85c854a5e510545 (patch) | |
tree | 50230535219eed3c4ef86302311397491925a667 /Zend | |
parent | 297ca5c08a7faffab4cd49b2a54d0dde148b26b4 (diff) | |
download | php-git-44e0d27685435959db4e5598e85c854a5e510545.tar.gz |
ups, finite is already a macro on Win32
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_operators.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 5df6319d5d..bcfe30c6f8 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -33,8 +33,10 @@ #include "zend_fast_cache.h" #ifndef HAVE_FINITE +#ifndef finite /* in case it's already a macro */ #define finite(a) isfinite(a) /* HPUX 11 only has isfinite() */ #endif +#endif #if WITH_BCMATH #include "ext/bcmath/number.h" |