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
........
This commit is contained in:
Mark Dickinson 2009-04-18 14:19:58 +00:00
parent e532c4d680
commit 9cbb143a70
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ double hypot(double x, double y)
#endif /* HAVE_HYPOT */
#ifndef HAVE_COPYSIGN
static double
double
copysign(double x, double y)
{
/* use atan2 to distinguish -0. from 0. */