From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.7 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_PASS, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 5399F1F4B4 for ; Tue, 13 Oct 2020 13:17:01 +0000 (UTC) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9F35C388E81A; Tue, 13 Oct 2020 13:16:59 +0000 (GMT) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by sourceware.org (Postfix) with ESMTPS id D889F3857838 for ; Tue, 13 Oct 2020 13:16:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org D889F3857838 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: sourceware.org; spf=none smtp.mailfrom=lukma@denx.de Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 4C9bfv72cwz1qs42; Tue, 13 Oct 2020 15:16:55 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 4C9bfv5nzdz1qqkC; Tue, 13 Oct 2020 15:16:55 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id kW-lRiE0HBld; Tue, 13 Oct 2020 15:16:51 +0200 (CEST) X-Auth-Info: GCHgJDgbm0gM/TrPbBdC0cQAzaQ/Dp7cz6/8fDPuf/k= Received: from localhost.localdomain (85-222-111-42.dynamic.chello.pl [85.222.111.42]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Tue, 13 Oct 2020 15:16:51 +0200 (CEST) From: Lukasz Majewski To: Joseph Myers , Paul Eggert , Adhemerval Zanella Subject: [PATCH 2/2] y2038: Remove not used __fstatat_time64 define Date: Tue, 13 Oct 2020 15:16:03 +0200 Message-Id: <20201013131603.12557-2-lukma@denx.de> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20201013131603.12557-1-lukma@denx.de> References: <20201013131603.12557-1-lukma@denx.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Florian Weimer , GNU C Library , Andreas Schwab , Stepan Golosunov , Alistair Francis Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" This define is only present in the ./include/sys/stat.h file. As it is not used in any other place it is eligible to be removed. --- include/sys/stat.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/sys/stat.h b/include/sys/stat.h index 646a1622b3..108cb0c9bf 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -50,7 +50,6 @@ hidden_proto (__fstatat64) # define __stat64_time64 __stat64 # define __fstat64_time64 __fstat64 # define __lstat64_time64 __lstat64 -# define __fstatat_time64 __fstatat # define __fstatat64_time64 __fstatat64 # else extern int __stat64_time64 (const char *file, struct __stat64_t64 *buf); -- 2.20.1