summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-18 14:14:48 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-04-18 14:14:48 (GMT)
commit23b6286e8fbaac3729f05b393fd0d129336563ee (patch)
treed91cf914552eae746bc1c85a15aea308015478a1 /Python
parentf253786a807967c2a7f289fa294b66d5dffadcdd (diff)
downloadcpython-23b6286e8fbaac3729f05b393fd0d129336563ee.zip
cpython-23b6286e8fbaac3729f05b393fd0d129336563ee.tar.gz
cpython-23b6286e8fbaac3729f05b393fd0d129336563ee.tar.bz2
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 eb06eb2..a5c0dd9 100644
--- a/Python/pymath.c
+++ b/Python/pymath.c
@@ -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. */