gro: fix missing includes

The GRO header file depends on stdint and mbuf.

Spotted with devtools/check-includes.sh

Fixes: e996506a1c07 ("lib/gro: add Generic Receive Offload API framework")

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: John McNamara <john.mcnamara@intel.com>
This commit is contained in:
Thomas Monjalon 2017-08-04 11:55:41 +02:00
parent a1742d172a
commit e258d5fe3b

View File

@ -38,6 +38,9 @@
* Interface to GRO library * Interface to GRO library
*/ */
#include <stdint.h>
#include <rte_mbuf.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif