Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-05-03 | Fix GCC 15 compatibility | unit73e | |
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. |