Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-03 | Use 'bool' in headers instead of '_Bool' | Michael Forney | |
_Bool is deprecated in C23, and using it breaks bootstrap with implementations that don't fully support C99 and define bool to some other type in stdbool.h. | |||
2022-04-23 | Remove use of C11 noreturn | Michael Forney | |
2021-10-03 | util: Don't error on NULL from malloc if requested size was 0 | Michael Forney | |
It is implementation-defined whether malloc returns NULL or some pointer when the size is 0, so we don't want to error out if the implementation chose NULL. | |||
2020-03-17 | pp: Add support for macro definition and expansion | Michael Forney | |
The token pasting operator `##` still needs to be implemented. | |||
2020-01-30 | decl: Use list link to determine presence in tentative definition list | Michael Forney | |
2020-01-30 | util: Remove unused listinsertlist | Michael Forney | |
2019-02-12 | Fix nested arrays | Michael Forney | |
We need to traverse the type hierarchy from inside to out to calculate size/alignment of arrays. | |||
2019-02-12 | Initial import | Michael Forney | |