Skip to content

Commit 23b6286

Browse files
committed
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 ........
1 parent f253786 commit 23b6286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/pymath.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ double hypot(double x, double y)
5757
#endif /* HAVE_HYPOT */
5858

5959
#ifndef HAVE_COPYSIGN
60-
static double
60+
double
6161
copysign(double x, double y)
6262
{
6363
/* use atan2 to distinguish -0. from 0. */

0 commit comments

Comments
 (0)