From patchwork Tue Mar 3 13:19:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukasz Majewski X-Patchwork-Id: 38381 Received: (qmail 105942 invoked by alias); 3 Mar 2020 13:20:06 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 105925 invoked by uid 89); 3 Mar 2020 13:20:06 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_NUMSUBJECT, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 spammy=HContent-Transfer-Encoding:8bit X-HELO: mail-out.m-online.net From: Lukasz Majewski To: Joseph Myers , Paul Eggert , Adhemerval Zanella Cc: Alistair Francis , Alistair Francis , GNU C Library , Siddhesh Poyarekar , Florian Weimer , Florian Weimer , Zack Weinberg , Carlos O'Donell , Andreas Schwab , Lukasz Majewski Subject: [PATCH] y2038: fix: Add missing libc_hidden_def for __futimens64 Date: Tue, 3 Mar 2020 14:19:39 +0100 Message-Id: <20200303131939.25751-1-lukma@denx.de> MIME-Version: 1.0 The libc_hidden_def () declaration for __futimens64 function was missing, so it is added in this patch. --- 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]) {