diff options
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/utimes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/posix/utimes.c b/sysdeps/posix/utimes.c index 2ef10b77eb..dfb236dee6 100644 --- a/sysdeps/posix/utimes.c +++ b/sysdeps/posix/utimes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1997, 2000 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 @@ -24,7 +24,7 @@ /* Change the access time of FILE to TVP[0] and the modification time of FILE to TVP[1]. */ int -__utimes (const char *file, struct timeval tvp[2]) +__utimes (const char *file, const struct timeval tvp[2]) { struct utimbuf buf, *times; |