From: Naveen Albert Date: Tue, 4 Aug 2026 23:20:01 +0000 (-0400) Subject: backtrace.c: Include stdbool.h X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;p=thirdparty%2Fasterisk.git backtrace.c: Include stdbool.h stdbool.h is needed now that we use the bool type directly instead of bfd_boolean. See also 1d95b744c06974f0a00c143c6e0fc979af930908. Resolves: #2061 --- diff --git a/main/backtrace.c b/main/backtrace.c index c76f660202..9227b43d15 100644 --- a/main/backtrace.c +++ b/main/backtrace.c @@ -72,6 +72,8 @@ #include +#include + /* simple definition of S_OR so we don't have include strings.h */ #define S_OR(a, b) (a && a[0] != '\0') ? a : b