11 lines
193 B
C
11 lines
193 B
C
#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_
|