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

Unified Diff: fusl/src/linux/cache.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/linux/cache.c
diff --git a/fusl/src/linux/cache.c b/fusl/src/linux/cache.c
index 3f0abc7caf16ec27697c2c0b4c050d0d17fa0a8e..5e7ba59289143aa4ebe8b5a90ba71b5d41f9d59e 100644
--- a/fusl/src/linux/cache.c
+++ b/fusl/src/linux/cache.c
@@ -2,17 +2,15 @@
#include "libc.h"
#ifdef SYS_cacheflush
-int _flush_cache(void *addr, int len, int op)
-{
- return syscall(SYS_cacheflush, addr, len, op);
+int _flush_cache(void* addr, int len, int op) {
+ return syscall(SYS_cacheflush, addr, len, op);
}
weak_alias(_flush_cache, cacheflush);
#endif
#ifdef SYS_cachectl
-int __cachectl(void *addr, int len, int op)
-{
- return syscall(SYS_cachectl, addr, len, op);
+int __cachectl(void* addr, int len, int op) {
+ return syscall(SYS_cachectl, addr, len, op);
}
weak_alias(__cachectl, cachectl);
#endif

Powered by Google App Engine
This is Rietveld 408576698