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

Unified Diff: fusl/src/stdlib/labs.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/labs.c
diff --git a/fusl/src/stdlib/labs.c b/fusl/src/stdlib/labs.c
index 675b95b8ef762df5671591c64680eb593f1babcc..9c995d60e86f2ea4d7d5e805a277be2917df5925 100644
--- a/fusl/src/stdlib/labs.c
+++ b/fusl/src/stdlib/labs.c
@@ -1,4 +1,3 @@
-long labs(long a)
-{
- return a>0 ? a : -a;
+long labs(long a) {
+ return a > 0 ? a : -a;
}

Powered by Google App Engine
This is Rietveld 408576698