Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: fusl/src/math/significand.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/src/math/significand.c
diff --git a/fusl/src/math/significand.c b/fusl/src/math/significand.c
index 40d9aa9f4968de1be2b6101a89b5c6e6de8d12e5..e5d5bbe211ab094612c01f0d73378aadb2188fc6 100644
--- a/fusl/src/math/significand.c
+++ b/fusl/src/math/significand.c
@@ -1,7 +1,6 @@
#define _GNU_SOURCE
#include <math.h>
-double significand(double x)
-{
- return scalbn(x, -ilogb(x));
+double significand(double x) {
+ return scalbn(x, -ilogb(x));
}

Powered by Google App Engine
This is Rietveld 408576698