Files
mckernel/kernel/include/kmalloc.h
2011-11-13 15:18:20 +09:00

10 lines
158 B
C

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