summaryrefslogtreecommitdiff
path: root/sysdeps/posix/utime.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/posix/utime.c')
-rw-r--r--sysdeps/posix/utime.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/posix/utime.c b/sysdeps/posix/utime.c
index d618bf2814..c0d2736ae2 100644
--- a/sysdeps/posix/utime.c
+++ b/sysdeps/posix/utime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 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 +26,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;