about summary refs log tree commit diff
path: root/time/gmtime.c
diff options
context:
space:
mode:
authorAlbert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>2018-12-18 23:11:40 +0100
committerAlbert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>2018-12-18 23:11:40 +0100
commit131db8b0c8eeb4185aaf641e9ab119717b0a860e (patch)
treed434b327af0f2999c71bc6e1c15e7ec45d36d2a8 /time/gmtime.c
parent64c2277d2eb14b6b485a16b799d900505e2cbe71 (diff)
downloadglibc-131db8b0c8eeb4185aaf641e9ab119717b0a860e.tar.gz
glibc-131db8b0c8eeb4185aaf641e9ab119717b0a860e.tar.xz
glibc-131db8b0c8eeb4185aaf641e9ab119717b0a860e.zip
Y2038: add function __gmtime64
Tested with 'make check' on x86_64-linux-gnu and i686-linux.gnu.

	* include/time.h
	(__gmtime64): Add.
	* time/gmtime.c
	(__gmtime64): Add.
	[__TIMESIZE != 64] (__gmtime): Turn into a wrapper.
Diffstat (limited to 'time/gmtime.c')
-rw-r--r--time/gmtime.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/time/gmtime.c b/time/gmtime.c
index bda09bc021..ee901c3ba1 100644
--- a/time/gmtime.c
+++ b/time/gmtime.c
@@ -28,10 +28,24 @@ __gmtime_r (const time_t *t, struct tm *tp)
 libc_hidden_def (__gmtime_r)
 weak_alias (__gmtime_r, gmtime_r)
 
+/* Return the `struct tm' representation of *T in UTC.  */
+struct tm *
+__gmtime64 (const __time64_t *t)
+{
+  return __tz_convert (*t, 0, &_tmbuf);
+}
+
+/* Provide a 32-bit variant if needed.  */
+
+#if __TIMESIZE != 64
+
+libc_hidden_def (__gmtime64)
 
-/* Return the `struct tm' representation of *T in UTC.	*/
 struct tm *
 gmtime (const time_t *t)
 {
-  return __tz_convert (*t, 0, &_tmbuf);
+  __time64_t t64 = *t;
+  return __gmtime64 (&t64);
 }
+
+#endif