Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/complex')
-rw-r--r--newlib/libm/complex/ccoshl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/newlib/libm/complex/ccoshl.c b/newlib/libm/complex/ccoshl.c
index 869549f88..f59fadf7a 100644
--- a/newlib/libm/complex/ccoshl.c
+++ b/newlib/libm/complex/ccoshl.c
@@ -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;
}