]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - misc/futimesat.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / misc / futimesat.c
index c675aa5ef1db8bc51a24d5e08f557a4d02ef460c..f7966b914bbb6f8f1b65a6fc315caa80cb5b28a2 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (C) 2005-2015 Free Software Foundation, Inc.
+/* futimesat -- Change access and modification times of file.  Stub version.
+   Copyright (C) 2005-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
@@ -13,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <errno.h>
 #include <fcntl.h>
 /* Change the access time of FILE relative to FD to TVP[0] and
    the modification time of FILE to TVP[1].  */
 int
-futimesat (fd, file, tvp)
-     int fd;
-     const char *file;
-     const struct timeval tvp[2];
+futimesat (int fd, const char *file, const struct timeval tvp[2])
 {
   if (fd < 0
       && (file == NULL