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 <jasvinder.si...@intel.com> Signed-off-by: Adrien Mazarguil <adrien.mazarg...@6wind.com> --- 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 <stdint.h> + #ifdef __cplusplus extern "C" { #endif -- 2.1.4