From 902c0c05431b3e0fb46f9079db5e559b8939a9f8 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 20 Aug 2022 22:31:22 -0400 Subject: [PATCH] fix build issue fix build error as below: ``` /tmp/getdns-20220820-35872-b98qtd/getdns-1.7.2/src/gldns/parse.c:250:16: error: implicitly declaring library function 'free' with type 'void (void *)' [-Werror,-Wimplicit-function-declaration] free(fkeyword); ^ ``` relates to Homebrew/homebrew-core#108544 Signed-off-by: Rui Chen --- src/gldns/parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gldns/parse.c b/src/gldns/parse.c index 367fa80f..1600bf81 100644 --- a/src/gldns/parse.c +++ b/src/gldns/parse.c @@ -13,6 +13,7 @@ #include "gldns/gbuffer.h" #include +#include #include gldns_lookup_table gldns_directive_types[] = {