From patchwork Thu Jun 20 21:29:28 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Sandeen X-Patchwork-Id: 11008195 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5FC4A14BB for ; Thu, 20 Jun 2019 21:29:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5429A288F4 for ; Thu, 20 Jun 2019 21:29:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4904528900; Thu, 20 Jun 2019 21:29:43 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id DCC76288EF for ; Thu, 20 Jun 2019 21:29:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726209AbfFTV3k (ORCPT ); Thu, 20 Jun 2019 17:29:40 -0400 Received: from sandeen.net ([63.231.237.45]:55558 "EHLO sandeen.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726183AbfFTV3j (ORCPT ); Thu, 20 Jun 2019 17:29:39 -0400 Received: by sandeen.net (Postfix, from userid 500) id 2AADE452090; Thu, 20 Jun 2019 16:29:37 -0500 (CDT) From: Eric Sandeen To: linux-xfs@vger.kernel.org Subject: [PATCH 05/11] libxcmd: remove unneeded includes Date: Thu, 20 Jun 2019 16:29:28 -0500 Message-Id: <1561066174-13144-6-git-send-email-sandeen@redhat.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1561066174-13144-1-git-send-email-sandeen@redhat.com> References: <1561066174-13144-1-git-send-email-sandeen@redhat.com> Sender: linux-xfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Eric Sandeen --- libxcmd/command.c | 1 - libxcmd/help.c | 1 - libxcmd/input.c | 2 -- libxcmd/quit.c | 1 - 4 files changed, 5 deletions(-) diff --git a/libxcmd/command.c b/libxcmd/command.c index a76d151..9cb90ec 100644 --- a/libxcmd/command.c +++ b/libxcmd/command.c @@ -4,7 +4,6 @@ * All Rights Reserved. */ -#include "platform_defs.h" #include "command.h" #include "input.h" diff --git a/libxcmd/help.c b/libxcmd/help.c index b7e0207..16a114d 100644 --- a/libxcmd/help.c +++ b/libxcmd/help.c @@ -6,7 +6,6 @@ #include "platform_defs.h" #include "command.h" -#include "../quota/init.h" static cmdinfo_t help_cmd; static void help_onecmd(const char *cmd, const cmdinfo_t *ct); diff --git a/libxcmd/input.c b/libxcmd/input.c index d232d4f..d058f2a 100644 --- a/libxcmd/input.c +++ b/libxcmd/input.c @@ -4,10 +4,8 @@ * All Rights Reserved. */ -#include "platform_defs.h" #include "input.h" #include -#include #if defined(ENABLE_READLINE) # include diff --git a/libxcmd/quit.c b/libxcmd/quit.c index 7c2d04f..4014980 100644 --- a/libxcmd/quit.c +++ b/libxcmd/quit.c @@ -6,7 +6,6 @@ #include "platform_defs.h" #include "command.h" -#include "../quota/init.h" static cmdinfo_t quit_cmd;