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

Unified Diff: fusl/src/stdlib/imaxdiv.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/stdlib/imaxdiv.c
diff --git a/fusl/src/stdlib/imaxdiv.c b/fusl/src/stdlib/imaxdiv.c
index b2ce821f51e3e2428e773e2e9eae6c2156157fb6..248854f7f2edb9b0dfea9a6db9b9c9d6b8e0672d 100644
--- a/fusl/src/stdlib/imaxdiv.c
+++ b/fusl/src/stdlib/imaxdiv.c
@@ -1,6 +1,5 @@
#include <inttypes.h>
-imaxdiv_t imaxdiv(intmax_t num, intmax_t den)
-{
- return (imaxdiv_t){ num/den, num%den };
+imaxdiv_t imaxdiv(intmax_t num, intmax_t den) {
+ return (imaxdiv_t){num / den, num % den};
}

Powered by Google App Engine
This is Rietveld 408576698