Commit 23b6286e authored by Mark Dickinson's avatar Mark Dickinson

Merged revisions 71705 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71705 | mark.dickinson | 2009-04-18 15:13:43 +0100 (Sat, 18 Apr 2009) | 2 lines

  copysign shouldn't be declared as static in pymath.c
........
parent f253786a
...@@ -57,7 +57,7 @@ double hypot(double x, double y) ...@@ -57,7 +57,7 @@ double hypot(double x, double y)
#endif /* HAVE_HYPOT */ #endif /* HAVE_HYPOT */
#ifndef HAVE_COPYSIGN #ifndef HAVE_COPYSIGN
static double double
copysign(double x, double y) copysign(double x, double y)
{ {
/* use atan2 to distinguish -0. from 0. */ /* use atan2 to distinguish -0. from 0. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment