summarylogtreecommitdiffstats
path: root/gcc15-fix.patch
AgeCommit message (Collapse)Author
2025-05-03Fix GCC 15 compatibilityunit73e
Before GCC15 the bool type didn't exist and it has to be defined with typedef. In C23 bool is a reserved word, and the code was patched to reflect that. While true and false are also constants, in the code 1 and 0 are being used, which is compatible.