7 lines
112 B
C
7 lines
112 B
C
#ifndef KMALLOC_H
|
|
#define KMALLOC_H
|
|
|
|
#include <stdlib.h>
|
|
#define kmalloc(x,y) malloc(x)
|
|
|
|
#endif /* KMALLOC_H */
|