URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [compat/] [linux/] [v2_0/] [include/] [linux/] [slab.h] - Rev 174
Compare with Previous | Blame | View Log
#ifndef __LINUX_SLAB_H__ #define __LINUX_SLAB_H__ #include <stdlib.h> #include <asm/page.h> /* Don't ask. Linux headers are a mess. */ #define kmalloc(x, y) malloc(x) #define kfree(x) free(x) #endif /* __LINUX_SLAB_H__ */