From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: [PATCH 04/13] net: fix missing include in exported header Date: Mon, 24 Apr 2017 17:52:58 +0200 Message-ID: <97b20c2edcbe7ffa66b916bb3053e1422a292aea.1493048352.git.adrien.mazarguil@6wind.com> References: Cc: Jasvinder Singh To: dev@dpdk.org Return-path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 2A937322C for ; Mon, 24 Apr 2017 17:53:23 +0200 (CEST) Received: by mail-wm0-f48.google.com with SMTP id m123so71977297wma.0 for ; Mon, 24 Apr 2017 08:53:23 -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") Cc: Jasvinder Singh Signed-off-by: Adrien Mazarguil --- 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