]> granicus.if.org Git - python/commitdiff
Merged revisions 71705 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sat, 18 Apr 2009 14:19:58 +0000 (14:19 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 18 Apr 2009 14:19:58 +0000 (14:19 +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 5cf61ab74c60e099c3788d58c29f39ad93da8d54..6b8def9f71f9aebf13b6088db6300a3d21b61b54 100644 (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. */