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

Unified Diff: fusl/src/unistd/read.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/unistd/read.c
diff --git a/fusl/src/unistd/read.c b/fusl/src/unistd/read.c
index eb882fcc1bf62f5be3115ab2a67c9c78da58531a..2b41055b4c26c9bede1b81d82337578c0d68395c 100644
--- a/fusl/src/unistd/read.c
+++ b/fusl/src/unistd/read.c
@@ -2,7 +2,6 @@
#include "syscall.h"
#include "libc.h"
-ssize_t read(int fd, void *buf, size_t count)
-{
- return syscall_cp(SYS_read, fd, buf, count);
+ssize_t read(int fd, void* buf, size_t count) {
+ return syscall_cp(SYS_read, fd, buf, count);
}

Powered by Google App Engine
This is Rietveld 408576698