| Index: fusl/src/process/execv.c
|
| diff --git a/fusl/src/process/execv.c b/fusl/src/process/execv.c
|
| index 2ac0dec0139a0b1e349d2e23df936d029ab3627d..4fa620f80ff1bf6773906252a12683911067fff6 100644
|
| --- a/fusl/src/process/execv.c
|
| +++ b/fusl/src/process/execv.c
|
| @@ -1,8 +1,7 @@
|
| #include <unistd.h>
|
|
|
| -extern char **__environ;
|
| +extern char** __environ;
|
|
|
| -int execv(const char *path, char *const argv[])
|
| -{
|
| - return execve(path, argv, __environ);
|
| +int execv(const char* path, char* const argv[]) {
|
| + return execve(path, argv, __environ);
|
| }
|
|
|