Chromium Code Reviews| Index: fusl/src/process/execv.c |
| diff --git a/fusl/src/process/execv.c b/fusl/src/process/execv.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2ac0dec0139a0b1e349d2e23df936d029ab3627d |
| --- /dev/null |
| +++ b/fusl/src/process/execv.c |
| @@ -0,0 +1,8 @@ |
| +#include <unistd.h> |
| + |
| +extern char **__environ; |
| + |
| +int execv(const char *path, char *const argv[]) |
| +{ |
| + return execve(path, argv, __environ); |
| +} |