]> granicus.if.org Git - python/commitdiff
only define zero constant when it is used
authorBenjamin Peterson <benjamin@python.org>
Sat, 15 Mar 2014 16:50:00 +0000 (11:50 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sat, 15 Mar 2014 16:50:00 +0000 (11:50 -0500)
Modules/_math.c

index fe75a36ec5171ea78364cd2e265b849af4c228ae..a14ff0605f488243f9d45a3e13f20e9dd7b8ce6e 100644 (file)
@@ -22,7 +22,9 @@
 static const double ln2 = 6.93147180559945286227E-01;
 static const double two_pow_m28 = 3.7252902984619141E-09; /* 2**-28 */
 static const double two_pow_p28 = 268435456.0; /* 2**28 */
+#ifndef Py_NAN
 static const double zero = 0.0;
+#endif
 
 /* acosh(x)
  * Method :