]> granicus.if.org Git - php/commitdiff
Fix the Win32 compile.
authorjim winstead <jimw@php.net>
Sat, 5 Jan 2002 08:29:53 +0000 (08:29 +0000)
committerjim winstead <jimw@php.net>
Sat, 5 Jan 2002 08:29:53 +0000 (08:29 +0000)
ext/standard/math.c

index 3ef96ca9de7ac7aa3114a33f62d25d52dd2a1d1c..e7d6308056d653d182070cb012df2a345f49a03f 100644 (file)
 #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 */