bond/include/kernel/ke/alloc.h
2018-02-17 23:06:57 -05:00

12 lines
182 B
C

#ifndef _KERNEL_KE_ALLOC_H_
#define _KERNEL_KE_ALLOC_H_
#include "type.h"
void KABI ke_alloc_init(void);
void *KABI ke_alloc(uint32_t size);
void KABI ke_free(void *ptr);
#endif