10 lines
117 B
C
10 lines
117 B
C
#ifndef KMALLOC_H
|
|
#define KMALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void* kmalloc(size_t size);
|
|
void kfree(void* mem);
|
|
|
|
#endif
|