From efb5bfaca938fa5991865c1e9a0c730dc919708c Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 17 Nov 2014 09:36:29 +0100 Subject: [PATCH] util: fix build on systems missing strndupa we need include shared/missing.h to be able to compile on sysmtes that lacks strndupa. --- shared/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/util.c b/shared/util.c index 855d4e42..23bbb26a 100644 --- a/shared/util.c +++ b/shared/util.c @@ -30,6 +30,7 @@ #include #include +#include #include #define USEC_PER_SEC 1000000ULL -- 2.47.3