mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
Remove inline keyword from leapyear function
This syncs up the code with gnulib.
This commit is contained in:
parent
e64708de36
commit
7417111567
@ -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
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user