From 585617c32008f1f75d8830b7b2f7e2b191e40508 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Fri, 15 Jan 2021 11:10:39 +0000 Subject: [PATCH] rib: fix missing header includes The standard integer types, and the size_t types are missing their required header includes in the rib header file. Fixes: 5a5793a5ffa2 ("rib: add RIB library") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Acked-by: Vladimir Medvedkin Reviewed-by: David Marchand --- lib/librte_rib/rte_rib.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/librte_rib/rte_rib.h b/lib/librte_rib/rte_rib.h index f80752e5bd..ec97079c35 100644 --- a/lib/librte_rib/rte_rib.h +++ b/lib/librte_rib/rte_rib.h @@ -18,6 +18,9 @@ * Level compressed tree implementation for IPv4 Longest Prefix Match */ +#include +#include + #include #ifdef __cplusplus -- 2.20.1