bond/include/kernel/ke/alloc.h

12 lines
182 B
C
Raw Normal View History

2018-01-26 08:43:22 +00:00
#ifndef _KERNEL_KE_ALLOC_H_
#define _KERNEL_KE_ALLOC_H_
2018-01-25 09:53:35 +00:00
#include "type.h"
2017-02-01 03:26:08 +00:00
void KABI ke_alloc_init(void);
2017-02-01 03:26:08 +00:00
void* KABI ke_alloc(uint32_t size);
void KABI ke_free(void *ptr);
#endif