1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

Use __copysign rather than copysign.

This commit is contained in:
Wilco Dijkstra
2015-04-22 12:07:56 +00:00
parent 2959eda927
commit 92f2897953
4 changed files with 11 additions and 3 deletions

View File

@ -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;
}