summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-18 14:19:58 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-04-18 14:19:58 +0000
commit9cbb143a706bae493a338730c73585e211fe7603 (patch)
tree7eeea797509077ceb00e9ba559c5540703259769 /Python
parente532c4d6803a89fee17366098e3acded609a0392 (diff)
downloadcpython-git-9cbb143a706bae493a338730c73585e211fe7603.tar.gz
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 ........
Diffstat (limited to 'Python')
-rw-r--r--Python/pymath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pymath.c b/Python/pymath.c
index 5cf61ab74c..6b8def9f71 100644
--- a/Python/pymath.c
+++ b/Python/pymath.c
@@ -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. */