Remove tracking of free state in freelist header since being in the list means it is also free

This commit is contained in:
Imbus 2025-09-08 07:38:22 +02:00
parent 69d4683cc5
commit 39c331cd09
3 changed files with 1 additions and 11 deletions

View file

@ -10,7 +10,6 @@
typedef struct FreeListBlock {
struct FreeListBlock *next;
uint8_t block_state;
} FreeListBlock;
typedef struct {