public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] y2038: fix: Add missing libc_hidden_def for __futimens64
@ 2020-03-07 11:47 Lukasz Majewski
  0 siblings, 0 replies; only message in thread
From: Lukasz Majewski @ 2020-03-07 11:47 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7975f9a48a83b95174503bda6c48124f08cb4f62

commit 7975f9a48a83b95174503bda6c48124f08cb4f62
Author: Lukasz Majewski <lukma@denx.de>
Date:   Tue Mar 3 11:21:11 2020 +0100

    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.

Diff:
---
 sysdeps/unix/sysv/linux/futimens.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sysdeps/unix/sysv/linux/futimens.c b/sysdeps/unix/sysv/linux/futimens.c
index 3447c47105..2c698b4e85 100644
--- a/sysdeps/unix/sysv/linux/futimens.c
+++ b/sysdeps/unix/sysv/linux/futimens.c
@@ -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])
 {


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-03-07 11:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-07 11:47 [glibc] y2038: fix: Add missing libc_hidden_def for __futimens64 Lukasz Majewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).