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

Unified Diff: fusl/src/malloc/__brk.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/malloc/__brk.c
diff --git a/fusl/src/malloc/__brk.c b/fusl/src/malloc/__brk.c
index 4c9119b4d11ce4991c8b903195f35961d3879a13..a7bc918bbbb784e1f7d13c3842f2d230c98db053 100644
--- a/fusl/src/malloc/__brk.c
+++ b/fusl/src/malloc/__brk.c
@@ -1,7 +1,6 @@
#include <stdint.h>
#include "syscall.h"
-uintptr_t __brk(uintptr_t newbrk)
-{
- return __syscall(SYS_brk, newbrk);
+uintptr_t __brk(uintptr_t newbrk) {
+ return __syscall(SYS_brk, newbrk);
}

Powered by Google App Engine
This is Rietveld 408576698