From 089a878fd499dec40d5505c7e751dd8d83a0cd65 Mon Sep 17 00:00:00 2001 From: Adrien Mazarguil Date: Wed, 26 Apr 2017 14:07:12 +0200 Subject: [PATCH] net: fix missing include in exported header 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 76fd1293e6..d22286c6e4 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.20.1