mirror of git://sourceware.org/git/glibc.git
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:
parent
b33e946fbb
commit
7975f9a48a
sysdeps/unix/sysv/linux
|
@ -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])
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue