From fe91dd01380637ecb1ab503007a067087d7463e1 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 13 Feb 2020 16:17:05 +0000 Subject: [PATCH] addr2line: use stdbool.h header for bool Presumably a bool definition is obtained via header contamination on FreeBSD-CURRENT. Found while trying to upstream FreeBSD addr2line changes - the FreeBSD 11.2 CI build failed there. Reported by: Cirrus-CI, upstream ELF Tool Chain MFC with: r357844 Sponsored by: The FreeBSD Foundation --- contrib/elftoolchain/addr2line/addr2line.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/elftoolchain/addr2line/addr2line.c b/contrib/elftoolchain/addr2line/addr2line.c index 797c2a462fd3..7cd3cfb674fd 100644 --- a/contrib/elftoolchain/addr2line/addr2line.c +++ b/contrib/elftoolchain/addr2line/addr2line.c @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include