bond/include/kernel/ke/alloc.h
2018-01-31 14:10:24 -05:00

12 lines
178 B
C

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