Files
mckernel/kernel/include/kmalloc.h
2012-12-17 16:15:05 +09:00

10 lines
158 B
C

#ifndef __HEADER_KMALLOC_H
#define __HEADER_KMALLOC_H
#include <ihk/mm.h>
void *kmalloc(int size, enum ihk_mc_ap_flag flag);
void kfree(void *ptr);
#endif