]> 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 88e263f0bab753840cce3822fd2f06565ae88abf..81fd68dfc3c3f95987a75902985ab0cefad6c49f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2014 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
@@ -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);
 }