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

Unified Diff: fusl/src/unistd/linkat.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/linkat.c
diff --git a/fusl/src/unistd/linkat.c b/fusl/src/unistd/linkat.c
index 6a9a0b77591a2273ad99d46cd228ead6a60b73f6..77fab1a2baf9f61a5c85701d2b42c8b5e596a1fc 100644
--- a/fusl/src/unistd/linkat.c
+++ b/fusl/src/unistd/linkat.c
@@ -1,7 +1,6 @@
#include <unistd.h>
#include "syscall.h"
-int linkat(int fd1, const char *existing, int fd2, const char *new, int flag)
-{
- return syscall(SYS_linkat, fd1, existing, fd2, new, flag);
+int linkat(int fd1, const char* existing, int fd2, const char* new, int flag) {
+ return syscall(SYS_linkat, fd1, existing, fd2, new, flag);
}

Powered by Google App Engine
This is Rietveld 408576698