16 lines
229 B
C
16 lines
229 B
C
#ifndef MEM_LIBC_H
|
|
#define MEM_LIBC_H
|
|
|
|
#include "mem_allocator.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
Allocator wapp_mem_libc_allocator(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // !MEM_LIBC_H
|