y2038: fix: Add missing libc_hidden_def for __futimens64

The libc_hidden_def () declaration for __futimens64 function was missing,
so it is added in this patch.
This commit is contained in:
Lukasz Majewski 2020-03-03 11:21:11 +01:00
parent b33e946fbb
commit 7975f9a48a
1 changed files with 2 additions and 0 deletions
sysdeps/unix/sysv/linux

View File

@ -38,6 +38,8 @@ __futimens64 (int fd, const struct __timespec64 tsp64[2])
}
#if __TIMESIZE != 64
libc_hidden_def (__futimens64);
int
__futimens (int fd, const struct timespec tsp[2])
{