ulib Non-partitioned umalloc implementation

This commit is contained in:
2025-11-10 18:36:27 +01:00
parent 5c02d4d44a
commit 81015d600b
3 changed files with 15 additions and 145 deletions

View File

@ -6,8 +6,6 @@
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);
void *urealloc(void *ptr, size_t oldsize, size_t newsize);
#endif // ULIB_UMALLOC_UMALLOC_H_