Ditch dlmalloc in favour of custom umalloc
This commit is contained in:
10
ulib/umalloc/umalloc.h
Normal file
10
ulib/umalloc/umalloc.h
Normal 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_
|
Reference in New Issue
Block a user