Chromium Code Reviews

Unified Diff: fusl/src/complex/casinhl.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: fusl/src/complex/casinhl.c
diff --git a/fusl/src/complex/casinhl.c b/fusl/src/complex/casinhl.c
index 714f189359071e31c9da7e52f66cb17df35facc9..bd77b4198b281084697097c9e8fc256ef5c9e773 100644
--- a/fusl/src/complex/casinhl.c
+++ b/fusl/src/complex/casinhl.c
@@ -1,14 +1,12 @@
#include "libm.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
-long double complex casinhl(long double complex z)
-{
- return casinh(z);
+long double complex casinhl(long double complex z) {
+ return casinh(z);
}
#else
-long double complex casinhl(long double complex z)
-{
- z = casinl(CMPLXL(-cimagl(z), creall(z)));
- return CMPLXL(cimagl(z), -creall(z));
+long double complex casinhl(long double complex z) {
+ z = casinl(CMPLXL(-cimagl(z), creall(z)));
+ return CMPLXL(cimagl(z), -creall(z));
}
#endif

Powered by Google App Engine