Fix the Win32 compile.

This commit is contained in:
jim winstead 2002-01-05 08:29:53 +00:00
parent 87ad1fdb3b
commit 62395159a9

View File

@ -31,6 +31,12 @@
#define M_PI 3.14159265358979323846
#endif
#ifdef PHP_WIN32
# define finite(x) _finite(x)
# define isnan(x) _isnan(x)
# define isinf(x) _isnan(x)
#endif
/* {{{ proto int abs(int number)
Return the absolute value of the number */