Remove unused defines FL_FREE, FL_USED

This commit is contained in:
Imbus 2025-09-08 08:48:19 +02:00
parent 3d4fe51dd1
commit 682901cafd

View file

@ -18,9 +18,6 @@ static inline size_t align_up(size_t n) {
#define ALIGN(x) (align_up(x))
#endif // FREELIST_NOALIGN
#define FL_FREE ((uint8_t)0x00)
#define FL_USED ((uint8_t)0x01)
typedef struct FreeListBlock {
struct FreeListBlock *next;
} FreeListBlock;