ulib Add umallocbig() and ufreebig() for non-fragmented allocations

This commit is contained in:
2025-11-09 22:21:19 +01:00
parent 02d60129b1
commit 4084336705
3 changed files with 19 additions and 0 deletions

View File

@ -7,5 +7,7 @@
void *umalloc(size_t size);
void ufree(void *ptr_);
void *urealloc(void *ptr, size_t newsize);
void *umallocbig(size_t size);
void ufreebig(void *addr);
#endif // ULIB_UMALLOC_UMALLOC_H_