From 4beb89b9f7a40703136d0ddac7aecd71d59d17bc Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 18 Apr 2009 14:13:43 +0000 Subject: copysign shouldn't be declared as static in pymath.c --- Python/pymath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pymath.c') diff --git a/Python/pymath.c b/Python/pymath.c index 5d09b4c3c78..2749688944b 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. */ -- cgit v1.2.3