From 3aa62ca6f0a204e910cbccea4552282d58724d8e Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 16 Apr 2024 13:47:18 +0200 Subject: [PATCH] os: fix missing include of misc.h in busfault.h busfault.h is using FALSE, but didn't include misc.h, so it really depends on include order whether it works. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- os/busfault.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/os/busfault.h b/os/busfault.h index d31d046fc..0cc5a6d80 100644 --- a/os/busfault.h +++ b/os/busfault.h @@ -27,6 +27,8 @@ #include +#include "misc.h" /* for TRUE/FALSE */ + #ifdef HAVE_SIGACTION #include