Prettify
This commit is contained in:
parent
349755a8eb
commit
e23b60db8d
1 changed files with 4 additions and 4 deletions
|
|
@ -2,16 +2,16 @@
|
|||
|
||||
static u8 memory[AXL_HEAP_SIZE];
|
||||
|
||||
typedef struct mb_header mb_header;
|
||||
|
||||
struct mb_header
|
||||
{
|
||||
u32 size;
|
||||
b8 is_free;
|
||||
struct mb_header* prev;
|
||||
struct mb_header* next;
|
||||
mb_header* prev;
|
||||
mb_header* next;
|
||||
};
|
||||
|
||||
typedef struct mb_header mb_header;
|
||||
|
||||
static mb_header* root = NULL;
|
||||
static mb_header* nomad = NULL;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue