From mboxrd@z Thu Jan 1 00:00:00 1970 From: Igor Ryzhov Subject: [PATCH] lpm6: fix missing header dependency Date: Thu, 28 Apr 2016 15:08:33 +0300 Message-ID: <1461845313-11513-1-git-send-email-iryzhov@nfware.com> To: dev@dpdk.org Return-path: Received: from mail-lf0-f41.google.com (mail-lf0-f41.google.com [209.85.215.41]) by dpdk.org (Postfix) with ESMTP id 931E738EB for ; Thu, 28 Apr 2016 14:08:40 +0200 (CEST) Received: by mail-lf0-f41.google.com with SMTP id c126so92578871lfb.2 for ; Thu, 28 Apr 2016 05:08:40 -0700 (PDT) Received: from localhost.localdomain (vpn.arccn.ru. [95.182.74.2]) by smtp.gmail.com with ESMTPSA id a76sm1666435lfa.11.2016.04.28.05.08.38 for (version=TLS1 cipher=AES128-SHA bits=128/128); Thu, 28 Apr 2016 05:08:39 -0700 (PDT) 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" Include stdint.h for the definition of uint*_t types. Signed-off-by: Igor Ryzhov --- lib/librte_lpm/rte_lpm6.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_lpm/rte_lpm6.h b/lib/librte_lpm/rte_lpm6.h index cedcea8..13d027f 100644 --- a/lib/librte_lpm/rte_lpm6.h +++ b/lib/librte_lpm/rte_lpm6.h @@ -38,6 +38,8 @@ * RTE Longest Prefix Match for IPv6 (LPM6) */ +#include + #ifdef __cplusplus extern "C" { #endif -- 2.6.4