From 91e25dc5b527eced759926bc3296fb7047970f92 Mon Sep 17 00:00:00 2001 From: Jasvinder Singh Date: Wed, 9 Dec 2015 11:12:53 +0000 Subject: [PATCH] examples/ip_pipeline: fix build in old environments 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 Acked-by: Cristian Dumitrescu --- 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 6e49763db4..6aaca115e9 100644 --- a/examples/ip_pipeline/config_parse.c +++ b/examples/ip_pipeline/config_parse.c @@ -40,6 +40,7 @@ #include #include #include +#include #include #include -- 2.20.1