1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 01:53:36 +02:00

revert andrei's path (i can't compile anymore on linux)

we're always using #ifndef HAVE_BLA instead of if !HAVE_BLA and if we need ieeefp.h for some weird platform (which one is that?) we need an autoconf check for it.
This commit is contained in:
Thies C. Arntzen
2000-04-20 07:23:55 +00:00
parent a9755246c3
commit 2b3a575ab3

View File

@@ -32,13 +32,10 @@
#include "zend_list.h"
#include "zend_fast_cache.h"
#if !HAVE_FINITE
#ifndef 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
#include "ext/bcmath/number.h"