Commit f6b02c640c for asterisk.org

commit f6b02c640c9fb1a81b843617ce089ec311f5ab11
Author: Naveen Albert <asterisk@phreaknet.org>
Date:   Tue Aug 4 19:20:01 2026 -0400

    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 <pthread.h>

+#include <stdbool.h>
+
 /* simple definition of S_OR so we don't have include strings.h */
 #define S_OR(a, b) (a && a[0] != '\0') ? a : b