[newlib-cygwin] ccoshl: Align formatting to upstream
Corinna Vinschen
corinna@sourceware.org
Wed Jun 14 08:36:00 GMT 2017
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=35cd6863fb3a970507b5eaf587eda59abcefb241
commit 35cd6863fb3a970507b5eaf587eda59abcefb241
Author: Aditya Upadhyay <aadit0402@gmail.com>
Date: Wed Jun 14 10:36:38 2017 +0200
ccoshl: Align formatting to upstream
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diff:
---
newlib/libm/complex/ccoshl.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/newlib/libm/complex/ccoshl.c b/newlib/libm/complex/ccoshl.c
index 869549f..f59fadf 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;
}
More information about the Newlib-cvs
mailing list