From patchwork Mon Mar 2 15:31:28 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 38370 Received: (qmail 38414 invoked by alias); 2 Mar 2020 15:31:33 -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 38391 invoked by uid 89); 2 Mar 2020 15:31:33 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-15.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_NUMSUBJECT, SPF_PASS autolearn=ham version=3.3.1 spammy=1970, fingerprint, Key, HX-Languages-Length:755 X-HELO: mx2.suse.de From: Andreas Schwab To: libc-alpha@sourceware.org Subject: [PATCH] Add missing libc_hidden_def for __utimensat64 X-Yow: I am a jelly donut. I am a jelly donut. Date: Mon, 02 Mar 2020 16:31:28 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 --- sysdeps/unix/sysv/linux/utimensat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sysdeps/unix/sysv/linux/utimensat.c b/sysdeps/unix/sysv/linux/utimensat.c index e4cf089b1d..eb16f0f3d5 100644 --- a/sysdeps/unix/sysv/linux/utimensat.c +++ b/sysdeps/unix/sysv/linux/utimensat.c @@ -76,6 +76,8 @@ __utimensat64 (int fd, const char *file, const struct __timespec64 tsp64[2], } #if __TIMESIZE != 64 +libc_hidden_def (__utimensat64) + int __utimensat (int fd, const char *file, const struct timespec tsp[2], int flags)