8 lines
121 B
C
8 lines
121 B
C
#ifndef __HEADER_KMALLOC_H
|
|
#define __HEADER_KMALLOC_H
|
|
|
|
void *kmalloc(int size, int flag);
|
|
void kfree(void *ptr);
|
|
|
|
#endif
|