summaryrefslogtreecommitdiff
path: root/posix/execve.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/execve.c')
-rw-r--r--posix/execve.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/posix/execve.c b/posix/execve.c
index 4f8adcf271..fcf5fa01ec 100644
--- a/posix/execve.c
+++ b/posix/execve.c
@@ -23,10 +23,7 @@
/* Replace the current process, executing PATH with arguments ARGV and
environment ENVP. ARGV and ENVP are terminated by NULL pointers. */
int
-__execve (path, argv, envp)
- const char *path;
- char *const argv[];
- char *const envp[];
+__execve (const char *path, char *const argv[], char *const envp[])
{
if (path == NULL || argv == NULL || envp == NULL)
{