]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 71705 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sat, 18 Apr 2009 14:14:48 +0000 (14:14 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 18 Apr 2009 14:14:48 +0000 (14:14 +0000)
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
........

Python/pymath.c

index eb06eb2244b1fb91e2a56046816b88c0411689cf..a5c0dd941480bc06beb3e6c098bbbb157926b16d 100644 (file)
@@ -57,7 +57,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. */