From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: [PATCH v3 04/14] net: fix missing include in exported header Date: Wed, 26 Apr 2017 14:07:12 +0200 Message-ID: <4a4df5183a7dc7a5ad31abfaa5d633e16d56ddd7.1493208189.git.adrien.mazarguil@6wind.com> References: To: dev@dpdk.org Return-path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id E3E3B559A for ; Wed, 26 Apr 2017 14:07:38 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id m123so2021049wma.0 for ; Wed, 26 Apr 2017 05:07:38 -0700 (PDT) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id n99sm14065wrb.62.2017.04.26.05.07.37 for (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 26 Apr 2017 05:07:37 -0700 (PDT) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This commit addresses the following errors: In file included from /tmp/check-includes.sh.18889.c:1:0: build/include/rte_net_crc.h:86:1: error: unknown type name 'uint32_t' [...] Fixes: 986ff526fb84 ("net: add CRC computation API") Signed-off-by: Adrien Mazarguil Acked-by: Jasvinder Singh --- lib/librte_net/rte_net_crc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_net/rte_net_crc.h b/lib/librte_net/rte_net_crc.h index 76fd129..d22286c 100644 --- a/lib/librte_net/rte_net_crc.h +++ b/lib/librte_net/rte_net_crc.h @@ -34,6 +34,8 @@ #ifndef _RTE_NET_CRC_H_ #define _RTE_NET_CRC_H_ +#include + #ifdef __cplusplus extern "C" { #endif -- 2.1.4