]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/compat/linux/v2_0/include/linux/slab.h
Initial revision
[karo-tx-redboot.git] / packages / compat / linux / v2_0 / include / linux / slab.h
1 #ifndef __LINUX_SLAB_H__
2 #define __LINUX_SLAB_H__
3
4 #include <stdlib.h>
5
6 #include <asm/page.h> /* Don't ask. Linux headers are a mess. */
7
8 #define kmalloc(x, y) malloc(x)
9 #define kfree(x) free(x)
10 #define vmalloc(x) malloc(x)
11 #define vfree(x) free(x)
12
13 #endif /* __LINUX_SLAB_H__ */
14