svn commit: r357862 - head/contrib/elftoolchain/addr2line
Ed Maste
emaste at FreeBSD.org
Thu Feb 13 16:17:06 UTC 2020
Author: emaste
Date: Thu Feb 13 16:17:05 2020
New Revision: 357862
URL: https://svnweb.freebsd.org/changeset/base/357862
Log:
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
Modified:
head/contrib/elftoolchain/addr2line/addr2line.c
Modified: head/contrib/elftoolchain/addr2line/addr2line.c
==============================================================================
--- head/contrib/elftoolchain/addr2line/addr2line.c Thu Feb 13 16:03:12 2020 (r357861)
+++ head/contrib/elftoolchain/addr2line/addr2line.c Thu Feb 13 16:17:05 2020 (r357862)
@@ -36,6 +36,7 @@
#include <libdwarf.h>
#include <libelftc.h>
#include <libgen.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
More information about the svn-src-head
mailing list