diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2015-04-22 12:07:56 +0000 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2015-04-22 12:07:56 +0000 |
commit | 92f2897953ab6cd9e073718cfe36611700e174c6 (patch) | |
tree | d108ed9bb344a6cc1f6803f6f91a534fdab67faa /math/k_casinh.c | |
parent | 2959eda9272a033863c271aff62095abd01bd4e3 (diff) | |
download | glibc-92f2897953ab6cd9e073718cfe36611700e174c6.tar.gz glibc-92f2897953ab6cd9e073718cfe36611700e174c6.tar.xz glibc-92f2897953ab6cd9e073718cfe36611700e174c6.zip |
Use __copysign rather than copysign.
Diffstat (limited to 'math/k_casinh.c')
-rw-r--r-- | math/k_casinh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/k_casinh.c b/math/k_casinh.c index de04e84004..cd089ab8f2 100644 --- a/math/k_casinh.c +++ b/math/k_casinh.c @@ -199,7 +199,7 @@ __kernel_casinh (__complex__ double x, int adj) if (adj) { double t = __real__ y; - __real__ y = copysign (__imag__ y, __imag__ x); + __real__ y = __copysign (__imag__ y, __imag__ x); __imag__ y = t; } |