1 #ifndef __LINUX_SLAB_H__ 2 #define __LINUX_SLAB_H__ 3 4 //#include <stdlib.h> //prife 5 6 #include <asm/page.h> /* Don't ask. Linux headers are a mess. */ 7 8 #define kmalloc(x, y) rt_malloc(x) 9 #define kfree(x) rt_free(x) 10 #define vmalloc(x) rt_malloc(x) 11 #define vfree(x) rt_free(x) 12 13 #endif /* __LINUX_SLAB_H__ */ 14 15