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

Unified Diff: fusl/src/malloc/aligned_alloc.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/aligned_alloc.c
diff --git a/fusl/src/malloc/aligned_alloc.c b/fusl/src/malloc/aligned_alloc.c
index cc0a801208712a9f31759690e55e3eabfd7c99f6..18326232936295de0570743104a18fee9be59af0 100644
--- a/fusl/src/malloc/aligned_alloc.c
+++ b/fusl/src/malloc/aligned_alloc.c
@@ -1,8 +1,7 @@
#include <stdlib.h>
-void *__memalign(size_t, size_t);
+void* __memalign(size_t, size_t);
-void *aligned_alloc(size_t align, size_t len)
-{
- return __memalign(align, len);
+void* aligned_alloc(size_t align, size_t len) {
+ return __memalign(align, len);
}

Powered by Google App Engine
This is Rietveld 408576698