From: Bruce Richardson Date: Mon, 25 May 2015 12:23:53 +0000 (+0100) Subject: eal: fix missing header dependency X-Git-Tag: spdx-start~9151 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=49386e44f29af038d2e7c5275f1c5991a11952f6;p=dpdk.git 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 --- 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