From 49386e44f29af038d2e7c5275f1c5991a11952f6 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Mon, 25 May 2015 13:23:53 +0100 Subject: [PATCH] eal: fix missing header dependency rte_pci.h depends upon stdio.h for the definition of the FILE type. Add in #include to the file to satisfy this dependency in cases where the including C file does not already include stdio. Signed-off-by: Bruce Richardson Acked-by: Marc Sune --- lib/librte_eal/common/include/rte_pci.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/include/rte_pci.h b/lib/librte_eal/common/include/rte_pci.h index 223d3cd29c..a3465322ba 100644 --- a/lib/librte_eal/common/include/rte_pci.h +++ b/lib/librte_eal/common/include/rte_pci.h @@ -74,6 +74,7 @@ extern "C" { #endif +#include #include #include #include -- 2.20.1