summaryrefslogtreecommitdiff
path: root/posix/fexecve.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/fexecve.c')
-rw-r--r--posix/fexecve.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/posix/fexecve.c b/posix/fexecve.c
index 95c8385bcd..dc765c4a02 100644
--- a/posix/fexecve.c
+++ b/posix/fexecve.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1994-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -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)
{