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

Unified Diff: fusl/src/process/execve.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/process/execve.c
diff --git a/fusl/src/process/execve.c b/fusl/src/process/execve.c
index 70286a17397da61e6dc31ff6db7f0c4dd2e77ef4..961cc5594eac05c41632d82529474b0381f63b04 100644
--- a/fusl/src/process/execve.c
+++ b/fusl/src/process/execve.c
@@ -1,8 +1,7 @@
#include <unistd.h>
#include "syscall.h"
-int execve(const char *path, char *const argv[], char *const envp[])
-{
- /* do we need to use environ if envp is null? */
- return syscall(SYS_execve, path, argv, envp);
+int execve(const char* path, char* const argv[], char* const envp[]) {
+ /* do we need to use environ if envp is null? */
+ return syscall(SYS_execve, path, argv, envp);
}

Powered by Google App Engine
This is Rietveld 408576698