From patchwork Tue Nov 1 21:30:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 59760 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 7C074385769A for ; Tue, 1 Nov 2022 21:31:56 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from hall.aurel32.net (hall.aurel32.net [IPv6:2001:bc8:30d7:100::1]) by sourceware.org (Postfix) with ESMTPS id 4268038576B7 for ; Tue, 1 Nov 2022 21:30:51 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4268038576B7 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=aurel32.net Authentication-Results: sourceware.org; spf=none smtp.mailfrom=aurel32.net DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=aurel32.net ; s=202004.hall; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date: Subject:Cc:To:From:Content-Type:From:Reply-To:Subject:Content-ID: Content-Description:In-Reply-To:References:X-Debbugs-Cc; bh=Fg3o0ZTGi/u+usJh6+4ssfYImyaUdLC3IJK02BoWzTI=; b=fbAwugHoax/3Y9JeXlQC06/6sz 1GOvM42U2MozQwwPVwVWHocQzSPMem3B5fCnnAc9Z36OMdOTcIivOh8JiKNJajaFadT8riFXvu2A/ l+9Q4I5tt98VPR5y8aLvmtMUp/XsdoiQkR0GzZnY+ASixvePqy6yN/vJKR3GUNG6F+HHJ15mljQj3 uaZ+Z+tBUqWrgG8tbErqJiXjUMlrkeuka9xSsn+QaaEGDZThF/Yn36JCRPhRyV14LeLPOZ451ADW6 t1F5dyG0o1YhdFE5pOFP4EsikYKm/njOV8LRTBgy9sGf+chitw/TNmJ86bG+x9WS27NvCetvHcJFq fMiM7Z3Q==; Received: from [2a01:e34:ec5d:a741:8a4c:7c4e:dc4c:1787] (helo=ohm.rr44.fr) by hall.aurel32.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1opyqQ-002Wfe-4W; Tue, 01 Nov 2022 22:30:50 +0100 Received: from aurel32 by ohm.rr44.fr with local (Exim 4.96) (envelope-from ) id 1opyqP-0005nr-2J; Tue, 01 Nov 2022 22:30:49 +0100 From: Aurelien Jarno To: libc-alpha@sourceware.org Subject: [PATCH] linux: Drop useless includes from fstatat.c Date: Tue, 1 Nov 2022 22:30:27 +0100 Message-Id: <20221101213026.22290-1-aurelien@aurel32.net> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 X-Spam-Status: No, score=-13.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, KAM_SHORT, SPF_HELO_PASS, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org 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: Aurelien Jarno Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" They are left-overs from previous refactorings. --- sysdeps/unix/sysv/linux/fstatat.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/sysdeps/unix/sysv/linux/fstatat.c b/sysdeps/unix/sysv/linux/fstatat.c index 055fb4762e..6783d7f1cf 100644 --- a/sysdeps/unix/sysv/linux/fstatat.c +++ b/sysdeps/unix/sysv/linux/fstatat.c @@ -17,12 +17,9 @@ . */ #include -#include #include #if !XSTAT_IS_XSTAT64 -# include - int __fstatat (int fd, const char *file, struct stat *buf, int flag) {