diff mbox series

[1/5] y2038: Export __clock_gettime64 to be usable in other libraries

Message ID 20200324131821.22048-2-lukma@denx.de
State New
Headers show
Series y2038: Replace __clock_gettime with __clock_gettime64 | expand

Commit Message

Lukasz Majewski March 24, 2020, 1:18 p.m. UTC
In the glibc project calls to clock_gettime shall be replaced with
__clock_gettime64, which is supporting 64 bit time.
To allow that the __clock_gettime64 needs to be exported as a GLIBC_PRIVATE
symbol.
---
 time/Versions | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/time/Versions b/time/Versions
index 8788e192ce..df22ac7f6a 100644
--- a/time/Versions
+++ b/time/Versions
@@ -77,5 +77,6 @@  libc {
   GLIBC_PRIVATE {
     # same as clock_gettime; used in other libraries
     __clock_gettime;
+    __clock_gettime64;
   }
 }