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 <adrien.mazarguil@6wind.com>
Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>
This commit is contained in:
Adrien Mazarguil 2017-04-26 14:07:12 +02:00 committed by Thomas Monjalon
parent d53aad67e8
commit 089a878fd4

View File

@ -34,6 +34,8 @@
#ifndef _RTE_NET_CRC_H_
#define _RTE_NET_CRC_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif