Skip to content

Commit 4fe1927

Browse files
author
Anantha Kesari H Y
committed
enabled macros to call the proper LibC functions
1 parent 480f4e3 commit 4fe1927

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Zend/acconfig.h

+7
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ int zend_sprintf(char *buffer, const char *format, ...);
6565

6666
#include <math.h>
6767

68+
/* To enable the is_nan, is_infinite and is_finite PHP functions */
69+
#ifdef NETWARE
70+
#define HAVE_ISNAN 1
71+
#define HAVE_ISINF 1
72+
#define HAVE_ISFINITE 1
73+
#endif
74+
6875
#ifndef zend_isnan
6976
#ifdef HAVE_ISNAN
7077
#define zend_isnan(a) isnan(a)

0 commit comments

Comments
 (0)