ccoshl: Align formatting to upstream
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
ed82849b8f
commit
35cd6863fb
|
@ -35,11 +35,11 @@
|
|||
long double complex
|
||||
ccoshl(long double complex z)
|
||||
{
|
||||
long double complex w;
|
||||
long double x, y;
|
||||
long double complex w;
|
||||
long double x, y;
|
||||
|
||||
x = creall(z);
|
||||
y = cimagl(z);
|
||||
w = coshl(x) * cosl(y) + (sinhl(x) * sinl(y)) * I;
|
||||
return w;
|
||||
x = creall(z);
|
||||
y = cimagl(z);
|
||||
w = coshl(x) * cosl(y) + (sinhl(x) * sinl(y)) * I;
|
||||
return w;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue