y2038: Export __clock_gettime64 to be usable in other libraries

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.
This commit is contained in:
Lukasz Majewski 2020-03-24 08:52:15 +01:00
parent ad14f4f8db
commit eb98965b53

View File

@ -77,5 +77,6 @@ libc {
GLIBC_PRIVATE {
# same as clock_gettime; used in other libraries
__clock_gettime;
__clock_gettime64;
}
}