tune BLOCKHEAP structure

This commit is contained in:
Vincent Wei
2021-03-25 16:56:43 +08:00
parent c8fcbd1864
commit 1fab00bf85

View File

@@ -602,11 +602,13 @@ typedef struct _BLOCKHEAP
/**
* The first free element in the heap.
*/
int free;
size_t free;
/**
* Pointer to the pre-allocated heap.
*/
void* heap;
size_t nr_alloc;
} BLOCKHEAP;
/**