summaryrefslogtreecommitdiff
path: root/posix/execve.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/execve.c')
-rw-r--r--posix/execve.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/posix/execve.c b/posix/execve.c
index 4f8adcf271..24d324f027 100644
--- a/posix/execve.c
+++ b/posix/execve.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-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 @@
/* 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)
{