summaryrefslogtreecommitdiff
path: root/posix/execvp.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/execvp.c')
-rw-r--r--posix/execvp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/posix/execvp.c b/posix/execvp.c
index fa0313911b..586bfd513f 100644
--- a/posix/execvp.c
+++ b/posix/execvp.c
@@ -21,9 +21,7 @@
/* Execute FILE, searching in the `PATH' environment variable if it contains
no slashes, with arguments ARGV and environment from `environ'. */
int
-execvp (file, argv)
- const char *file;
- char *const argv[];
+execvp (const char *file, char *const argv[])
{
return __execvpe (file, argv, __environ);
}