This is the mail archive of the newlib-cvs@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[newlib-cygwin] ccoshl: Align formatting to upstream


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;
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]