summaryrefslogtreecommitdiff
path: root/time/dysize.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/dysize.c')
-rw-r--r--time/dysize.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/time/dysize.c b/time/dysize.c
index 95b6095b37..77f67a7ea3 100644
--- a/time/dysize.c
+++ b/time/dysize.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1994-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
@@ -18,8 +18,7 @@
#include <time.h>
int
-dysize (year)
- int year;
+dysize (int year)
{
return __isleap (year) ? 366 : 365;
}