]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/posix/utime.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / posix / utime.c
index a750ecc290f6f678f16793ec3250e1d98301bde5..32b6be250f854706d40933d06ff6a853feac9f5b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (C) 1991,94,97,2002 Free Software Foundation, Inc.
+/* utime -- Change access and modification times of file.  Posix version.
+   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
@@ -26,9 +27,7 @@
 /* Set the access and modification times of FILE to those given in TIMES.
    If TIMES is NULL, set them to the current time.  */
 int
-utime (file, times)
-     const char *file;
-     const struct utimbuf *times;
+utime (const char *file, const struct utimbuf *times)
 {
   struct timeval timevals[2];
   struct timeval *tvp;