ccoshl: Align formatting to upstream

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Aditya Upadhyay 2017-06-14 10:36:38 +02:00 committed by Corinna Vinschen
parent ed82849b8f
commit 35cd6863fb
1 changed files with 6 additions and 6 deletions

View File

@ -35,11 +35,11 @@
long double complex long double complex
ccoshl(long double complex z) ccoshl(long double complex z)
{ {
long double complex w; long double complex w;
long double x, y; long double x, y;
x = creall(z); x = creall(z);
y = cimagl(z); y = cimagl(z);
w = coshl(x) * cosl(y) + (sinhl(x) * sinl(y)) * I; w = coshl(x) * cosl(y) + (sinhl(x) * sinl(y)) * I;
return w; return w;
} }