]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - posix/execvp.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / posix / execvp.c
index 5f2e155cd55db43e92f7073363ebed78d6cdd629..81fd68dfc3c3f95987a75902985ab0cefad6c49f 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (C) 1991,92, 1995-99, 2002, 2004, 2005, 2007, 2009
-   Free Software Foundation, Inc.
+/* Copyright (C) 1991-2019 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
@@ -22,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);
 }