summaryrefslogtreecommitdiffstats
path: root/Include/pymath.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-04 17:02:56 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-01-04 17:02:56 (GMT)
commit6cb2bddb85d2cdc16c214b35d795fb60840bcc67 (patch)
tree4ede0c31a36b42ad36b63253f9712a4bcbb94989 /Include/pymath.h
parent7894a7255f1e6e0468e9e673c119be09bebf5e35 (diff)
downloadcpython-6cb2bddb85d2cdc16c214b35d795fb60840bcc67.zip
cpython-6cb2bddb85d2cdc16c214b35d795fb60840bcc67.tar.gz
cpython-6cb2bddb85d2cdc16c214b35d795fb60840bcc67.tar.bz2
Merged revisions 68304 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68304 | mark.dickinson | 2009-01-04 17:02:05 +0000 (Sun, 04 Jan 2009) | 2 lines Fix HAVE_DECL_ISINF/ISNAN test (again). ........
Diffstat (limited to 'Include/pymath.h')
-rw-r--r--Include/pymath.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pymath.h b/Include/pymath.h
index 9e0f46f..ca84dd9 100644
--- a/Include/pymath.h
+++ b/Include/pymath.h
@@ -87,7 +87,7 @@ extern double copysign(double, double);
* Note: PC/pyconfig.h defines Py_IS_NAN as _isnan
*/
#ifndef Py_IS_NAN
-#ifdef HAVE_DECL_ISNAN && HAVE_DECL_ISNAN == 1
+#if defined HAVE_DECL_ISNAN && HAVE_DECL_ISNAN == 1
#define Py_IS_NAN(X) isnan(X)
#else
#define Py_IS_NAN(X) ((X) != (X))
@@ -104,7 +104,7 @@ extern double copysign(double, double);
* Note: PC/pyconfig.h defines Py_IS_INFINITY as _isinf
*/
#ifndef Py_IS_INFINITY
-#ifdef HAVE_DECL_ISINF && HAVE_DECL_ISINF == 1
+#if defined HAVE_DECL_ISINF && HAVE_DECL_ISINF == 1
#define Py_IS_INFINITY(X) isinf(X)
#else
#define Py_IS_INFINITY(X) ((X) && (X)*0.5 == (X))