mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Include proper files for finite.
This commit is contained in:
parent
284b0ae24e
commit
fe1147b01a
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue