From f5bf8249d52527345100b2f3d703b15edaabf088 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Fri, 15 Jan 2021 11:10:42 +0000 Subject: [PATCH] fib: fix missing header includes Add stdint.h to get definitions of standard integer types Fixes: 39e927248416 ("fib: add FIB library") Fixes: 40d41a8a7b34 ("fib: support IPv6") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Acked-by: Vladimir Medvedkin Reviewed-by: David Marchand --- lib/librte_fib/rte_fib.h | 2 ++ lib/librte_fib/rte_fib6.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/librte_fib/rte_fib.h b/lib/librte_fib/rte_fib.h index fef0749525..acad20963c 100644 --- a/lib/librte_fib/rte_fib.h +++ b/lib/librte_fib/rte_fib.h @@ -19,6 +19,8 @@ * for IPv4 Longest Prefix Match */ +#include + #include #ifdef __cplusplus diff --git a/lib/librte_fib/rte_fib6.h b/lib/librte_fib/rte_fib6.h index 668bffb2ba..0e193b8e7b 100644 --- a/lib/librte_fib/rte_fib6.h +++ b/lib/librte_fib/rte_fib6.h @@ -19,6 +19,8 @@ * for IPv6 Longest Prefix Match */ +#include + #include #ifdef __cplusplus -- 2.20.1