From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jasvinder Singh Subject: [PATCH] ip_pipeline: fix build errors on different linux kernels Date: Wed, 9 Dec 2015 11:12:53 +0000 Message-ID: <1449659573-3874-1-git-send-email-jasvinder.singh@intel.com> To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 601DE590C for ; Wed, 9 Dec 2015 12:07:42 +0100 (CET) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 6e49763..6aaca11 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.5.0