]> granicus.if.org Git - php/commitdiff
Do proper ieeefp.h check.
authorAndrei Zmievski <andrei@php.net>
Thu, 20 Apr 2000 13:49:07 +0000 (13:49 +0000)
committerAndrei Zmievski <andrei@php.net>
Thu, 20 Apr 2000 13:49:07 +0000 (13:49 +0000)
Zend/zend_operators.c

index bcfe30c6f8ebc267379c48eb9380f38793f98d6e..cd7ad72b09b19938707e1d9ba3bb77f4a1a2a869 100644 (file)
 #ifndef finite                                 /* in case it's already a macro */
 #define finite(a) isfinite(a)  /* HPUX 11 only has isfinite() */
 #endif
+#else
+#if HAVE_IEEEFP_H
+#include <ieeefp.h>
+#endif
 #endif
 
 #if WITH_BCMATH