Cleanup includes, remove stdio.h from base

This commit is contained in:
Krzosa Karol
2023-01-01 12:58:57 +01:00
parent c5539276ae
commit 39f46900b2
9 changed files with 608 additions and 624 deletions

View File

@@ -21,7 +21,8 @@ struct Lex_Stream{
};
struct Core_Ctx{
Arena *perm; // Stores: AST, tokens, interns
Push_Arena perm_push_only;
Push_Arena *perm; // Stores: AST, tokens, interns
Allocator *heap;
Scratch_Arena *scratch;