Remove inline keyword from leapyear function

This syncs up the code with gnulib.
This commit is contained in:
Siddhesh Poyarekar 2014-06-27 00:00:06 +05:30
parent e64708de36
commit 7417111567
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-06-26 Siddhesh Poyarekar <siddhesh@redhat.com>
* time/mktime.c (leapyear): Remove inline keyword. The code is now
identical to gnulib mktime.
2014-06-26 Joseph Myers <joseph@codesourcery.com>
* configure.ac: Do not test for machine being rs6000. Do not test

View File

@ -142,7 +142,7 @@ verify (twos_complement_arithmetic,
verify (base_year_is_a_multiple_of_100, TM_YEAR_BASE % 100 == 0);
/* Return 1 if YEAR + TM_YEAR_BASE is a leap year. */
static inline int
static int
leapyear (long_int year)
{
/* Don't add YEAR to TM_YEAR_BASE, as that might overflow.