From: Bruce Richardson Date: Fri, 15 Jan 2021 11:10:39 +0000 (+0000) Subject: rib: fix missing header includes X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=585617c32008f1f75d8830b7b2f7e2b191e40508;p=dpdk.git 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 --- 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