From c3652da29fd4f68ded6ed34d0c82b938617dabb3 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 30 Oct 2016 21:20:00 +0100 Subject: [PATCH] Add December 31 2016 leap second. --- libc/time/gmtime_r.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/time/gmtime_r.c b/libc/time/gmtime_r.c index 53195c6f..405dcfae 100644 --- a/libc/time/gmtime_r.c +++ b/libc/time/gmtime_r.c @@ -87,6 +87,7 @@ static int8_t leap_seconds[][12] = DECL_LEAP_SECOND(2013, 0, 0), DECL_LEAP_SECOND(2014, 0, 0), DECL_LEAP_SECOND(2015, 1, 0), + DECL_LEAP_SECOND(2016, 0, 1), }; static time_t get_leap_second(int year, int month)