mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
Include proper files for finite.
This commit is contained in:
parent
284b0ae24e
commit
fe1147b01a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user