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: 1247709 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-110199-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.de Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha1 header.s=default header.b=JdvyOCl0; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48WPJD1Bc2z9sPK for ; Tue, 3 Mar 2020 02:31:39 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=JYGtjAYeZ5Tcdt1UGb6bJY4euOc40 rDumPVuky9tn3IM6V+PVgOGVMQiocw8epOSv0KA5mBzfv84c68/+3kWq2EkTYkbj VUmxvqOCt3ev1y6JvV45IxGOWJFpHM1EHoV4wAmGtW8Iofqm34y5TxxK0k0Phe6W YXJEC53YgI7Jww= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=/DhsIwYvmcwc/sVENykSD3ZZo/E=; b=Jdv yOCl0u3Y88zwTAPO+zHx7dG+QyTaYlUbAQw9z/Xu7KQqq+diHuwWS8zDzHqgj/KE j4Dqt2tDeFGWD43ofWR5cyGZ34x3edPHvisbYbT2ierxb79CGeqSzXTX3gWjzEUn 8/G1l++Sx9oVR6Cvh6ON2wfdFs++8EFvEEzdf0Yk= 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)