]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Y2038: add function __ctime64
authorAlbert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>
Tue, 18 Dec 2018 22:13:24 +0000 (23:13 +0100)
committerAlbert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>
Tue, 18 Dec 2018 22:13:24 +0000 (23:13 +0100)
Tested with 'make check' on x86_64-linux-gnu and i686-linux.gnu.

* include/time.h
(__ctime64): Add.
* time/gmtime.c
(__ctime64): Add.
[__TIMESIZE != 64] (ctime): Turn into a wrapper.

ChangeLog
include/time.h
time/ctime.c

index 5dfc488554e0a307a29f25ac8da583a3cea2b053..9b345fad4dd5e7a39329ca47f2d77466d14707d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2018-12-18  Albert ARIBAUD <albert.aribaud@3adev.fr>
 
+       * include/time.h
+       (__ctime64): Add.
+       * time/gmtime.c
+       (__ctime64): Add.
+       [__TIMESIZE != 64] (ctime): Turn into a wrapper.
+
        * include/time.h
        (__gmtime64_r): Add.
        * time/gmtime.c
index fb93d647d8c89bd972b8243a537c2ba6b757d311..34d9de126bc617ee52273f35acdc7195b7c554e7 100644 (file)
@@ -57,6 +57,13 @@ extern time_t __mktime_internal (struct tm *__tp,
                                                       struct tm *),
                                 long int *__offset) attribute_hidden;
 
+#if __TIMESIZE == 64
+# define __ctime64 ctime
+#else
+extern char *__ctime64 (const __time64_t *__timer) __THROW;
+libc_hidden_proto (__ctime64);
+#endif
+
 #if __TIMESIZE == 64
 # define __localtime64 localtime
 #else
index 1222614f2951e3d6cd83788b409106004750e2e9..7925662a0a1b82d0c39af5538a2eca925a9fe476 100644 (file)
 /* Return a string as returned by asctime which
    is the representation of *T in that form.  */
 char *
-ctime (const time_t *t)
+__ctime64 (const __time64_t *t)
 {
   /* The C Standard says ctime (t) is equivalent to asctime (localtime (t)).
      In particular, ctime and asctime must yield the same pointer.  */
-  return asctime (localtime (t));
+  return asctime (__localtime64 (t));
+}
+
+/* Provide a 32-bit variant if needed.  */
+
+#if __TIMESIZE != 64
+
+libc_hidden_def (__ctime64)
+
+char *
+ctime (const time_t *t)
+{
+  __time64_t t64 = *t;
+  return __ctime64 (&t64);
 }
+
+#endif