# HG changeset patch # User Mike Becker # Date 1783248317 -7200 # Node ID caa1b87a446363950bb829849f3a9ac8089bcbac # Parent b58f54f89ac7d63be73423b67dd6ed94398ae5c3 fix missing stdbool.h include for support for C17 and below diff -r b58f54f89ac7 -r caa1b87a4463 src/bfile_heuristics.h --- a/src/bfile_heuristics.h Sun Jul 05 12:44:44 2026 +0200 +++ b/src/bfile_heuristics.h Sun Jul 05 12:45:17 2026 +0200 @@ -27,6 +27,10 @@ #ifndef BFILE_HEURISTICS_H_ #define BFILE_HEURISTICS_H_ +#if __STDC_VERSION__ < 202311L +#include +#endif + #define BFILE_IGNORE 0x00 #define BFILE_LOW_ACCURACY 0x01 #define BFILE_MEDIUM_ACCURACY 0x02