diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-17 17:38:03 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-17 17:38:03 +0100 |
| commit | e0ec3f0a536fabe0c8c47dd64da77855c0824adc (patch) | |
| tree | a009465731576dd8d0509f8c2f0c7023d1ddfbb7 /lib/sys/execve.h | |
| parent | 0e0f22cde8fa9a8c9e0ff509a90727092e0af58b (diff) | |
resolve Warnings
Diffstat (limited to 'lib/sys/execve.h')
| -rw-r--r-- | lib/sys/execve.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sys/execve.h b/lib/sys/execve.h index 62ebefc..7939559 100644 --- a/lib/sys/execve.h +++ b/lib/sys/execve.h @@ -3,7 +3,7 @@ #include "syscalls.h" -static int execve(const char *pathname, char *const argv[], char *const envp[]) +static int execve(const char *pathname, const char *argv[], const char *envp[]) { return syscall(EXECVE, pathname, argv, envp); } |