diff options
Diffstat (limited to 'posix/fexecve.c')
-rw-r--r-- | posix/fexecve.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/posix/fexecve.c b/posix/fexecve.c index 95c8385bcd..a5505f458a 100644 --- a/posix/fexecve.c +++ b/posix/fexecve.c @@ -23,10 +23,7 @@ /* Execute the file FD refers to, overlaying the running program image. ARGV and ENVP are passed to the new program, as for `execve'. */ int -fexecve (fd, argv, envp) - int fd; - char *const argv[]; - char *const envp[]; +fexecve (int fd, char *const argv[], char *const envp[]) { if (fd < 0 || argv == NULL || envp == NULL) { |