This commit addresses the following error:
In file included from /tmp/check-includes.sh.28023.c:1:0:
build/include/rte_bitrate.h:82:2: error: unknown type name 'uint8_t'
[...]
It also adds C++ awareness to rte_bitrate.h.
Fixes: 2ad7ba9a6567 ("bitrate: add bitrate statistics library")
Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Remy Horton <remy.horton@intel.com>
#ifndef _RTE_BITRATE_H_
#define _RTE_BITRATE_H_
+#include <stdint.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* Bitrate statistics data structure.
* This data structure is intentionally opaque.
int rte_stats_bitrate_calc(struct rte_stats_bitrates *bitrate_data,
uint8_t port_id);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _RTE_BITRATE_H_ */