Include proper files for finite.

This commit is contained in:
Andrei Zmievski 2000-04-19 15:55:52 +00:00
parent 284b0ae24e
commit fe1147b01a

View File

@ -32,10 +32,12 @@
#include "zend_list.h"
#include "zend_fast_cache.h"
#ifndef HAVE_FINITE
#if !HAVE_FINITE
#ifndef finite /* in case it's already a macro */
#define finite(a) isfinite(a) /* HPUX 11 only has isfinite() */
#endif
#else
#include <ieeefp.h>
#endif
#if WITH_BCMATH