MyOS Kernel
kmalloc.h
Go to the documentation of this file.
1 
5 #ifndef KMALLOC_H
6 #define KMALLOC_H
7 
8 #include <stddef.h>
9 
10 
16 void* kmalloc(size_t size);
17 
22 void kfree(void* mem);
23 
24 #endif
void * kmalloc(size_t size)
Definition: kmalloc.c:47
void kfree(void *mem)
Definition: kmalloc.c:101