diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pymath.c | 2 |
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. */ |