]> sourceware.org Git - glibc.git/commitdiff
y2038: fix: Add missing libc_hidden_def for __futimens64
authorLukasz Majewski <lukma@denx.de>
Tue, 3 Mar 2020 10:21:11 +0000 (11:21 +0100)
committerLukasz Majewski <lukma@denx.de>
Sat, 7 Mar 2020 11:45:27 +0000 (12:45 +0100)
The libc_hidden_def () declaration for __futimens64 function was missing,
so it is added in this patch.

sysdeps/unix/sysv/linux/futimens.c

index 3447c47105576efcf2438c28aeebbaf2879a07da..2c698b4e852a16839fecac81f7009549654f004f 100644 (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])
 {
This page took 0.047282 seconds and 5 git commands to generate.