From: Mark Dickinson Date: Sat, 18 Apr 2009 14:13:43 +0000 (+0000) Subject: copysign shouldn't be declared as static in pymath.c X-Git-Tag: v2.7a1~1462 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4beb89b9f7a40703136d0ddac7aecd71d59d17bc;p=thirdparty%2FPython%2Fcpython.git copysign shouldn't be declared as static in pymath.c --- diff --git a/Python/pymath.c b/Python/pymath.c index 5d09b4c3c789..2749688944b9 100644 --- a/Python/pymath.c +++ b/Python/pymath.c @@ -35,7 +35,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. */