This patch fixes build errors on linux kernels such as SuSE 11-SP2/3(64 bits), etc.
Error Log: error: implicit declaration of function 'WIFEXITED' error: implicit declaration of function 'WEXITSTATUS' Fixes: ed0b2d020159 ("examples/ip_pipeline: add more ports") Signed-off-by: Jasvinder Singh <jasvinder.singh at intel.com> Acked-by: Cristian Dumitrescu <cristian.dumitrescu at intel.com> --- examples/ip_pipeline/config_parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/ip_pipeline/config_parse.c b/examples/ip_pipeline/config_parse.c index 6e49763..6aaca11 100644 --- a/examples/ip_pipeline/config_parse.c +++ b/examples/ip_pipeline/config_parse.c @@ -40,6 +40,7 @@ #include <string.h> #include <libgen.h> #include <unistd.h> +#include <sys/wait.h> #include <rte_errno.h> #include <rte_cfgfile.h> -- 2.5.0