Ditch dlmalloc in favour of custom umalloc

This commit is contained in:
2025-09-27 22:32:38 +02:00
parent 3b1bb9d531
commit 8d081bedb0
13 changed files with 114 additions and 110 deletions

10
ulib/umalloc/umalloc.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef ULIB_UMALLOC_UMALLOC_H_
#define ULIB_UMALLOC_UMALLOC_H_
#include <stdint.h>
#include <stddef.h>
void *umalloc(size_t size);
void ufree(void *ptr_);
#endif // ULIB_UMALLOC_UMALLOC_H_