From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <dev-bounces@dpdk.org> Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 62541A0C47; Tue, 26 Oct 2021 04:26:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E08E740A4B; Tue, 26 Oct 2021 04:26:50 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 7ECCD4003E for <dev@dpdk.org>; Tue, 26 Oct 2021 04:26:49 +0200 (CEST) Received: from linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net (linux.microsoft.com [13.77.154.182]) by linux.microsoft.com (Postfix) with ESMTPSA id B053E20A5044; Mon, 25 Oct 2021 19:26:48 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com B053E20A5044 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1635215208; bh=19VO4TlZEiQT+HcejoTOL2u6CXecZ8UnC4T8s9bIglE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=J2du3uB0ZKpQcV1FIzLwUrryrypN1hPPAezNAhYP2a/7tPg3pCeIV6Calm0jmmZPr mFzxyPpjNswQx9fN3v7qGS4kuAixjoVtMIlgscdUzZYDhVLqO6kWG9t7hfWF180BOQ 7lU6BJSosjYPjd63Y1OKl9uOvyxRFBFol1JhC6Po= From: Jie Zhou <jizh@linux.microsoft.com> To: dev@dpdk.org Cc: dmitry.kozliuk@gmail.com, roretzla@microsoft.com, navasile@linux.microsoft.com, dmitrym@microsoft.com, pallavi.kadam@intel.com, talshn@nvidia.com, thomas@monjalon.net, aconole@redhat.com Date: Mon, 25 Oct 2021 19:26:35 -0700 Message-Id: <1635215204-20604-3-git-send-email-jizh@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1635215204-20604-1-git-send-email-jizh@linux.microsoft.com> References: <1634228502-14701-1-git-send-email-jizh@linux.microsoft.com> <1635215204-20604-1-git-send-email-jizh@linux.microsoft.com> Subject: [dpdk-dev] [PATCH v7 02/11] app/test: remove unnecessary headers X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> Remove unnecessary header inclusion Signed-off-by: Jie Zhou <jizh@linux.microsoft.com> --- app/test/commands.c | 2 -- app/test/test.c | 1 - app/test/test_cmdline_lib.c | 1 - 3 files changed, 4 deletions(-) diff --git a/app/test/commands.c b/app/test/commands.c index 76f6ee5d23..82bd8bf474 100644 --- a/app/test/commands.c +++ b/app/test/commands.c @@ -8,8 +8,6 @@ #include <stdint.h> #include <string.h> #include <stdlib.h> -#include <netinet/in.h> -#include <termios.h> #include <inttypes.h> #include <errno.h> #include <sys/queue.h> diff --git a/app/test/test.c b/app/test/test.c index 5194131026..8b698656bf 100644 --- a/app/test/test.c +++ b/app/test/test.c @@ -8,7 +8,6 @@ #include <stdarg.h> #include <stdlib.h> #include <errno.h> -#include <termios.h> #include <ctype.h> #include <sys/queue.h> diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c index f238094b07..4715edc341 100644 --- a/app/test/test_cmdline_lib.c +++ b/app/test/test_cmdline_lib.c @@ -8,7 +8,6 @@ #include <stdarg.h> #include <stdlib.h> #include <errno.h> -#include <termios.h> #include <ctype.h> #include <sys/queue.h> -- 2.32.0.windows.2