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

Unified Diff: fusl/src/math/remainderf.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/remainderf.c
diff --git a/fusl/src/math/remainderf.c b/fusl/src/math/remainderf.c
index 420d3bfc447b2ef14ed93266da2abc082fc40fc5..e3369613ca2fcddc4c4df7f3d726897962976d4e 100644
--- a/fusl/src/math/remainderf.c
+++ b/fusl/src/math/remainderf.c
@@ -1,10 +1,9 @@
#include <math.h>
#include "libc.h"
-float remainderf(float x, float y)
-{
- int q;
- return remquof(x, y, &q);
+float remainderf(float x, float y) {
+ int q;
+ return remquof(x, y, &q);
}
weak_alias(remainderf, dremf);

Powered by Google App Engine
This is Rietveld 408576698