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:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user