summaryrefslogtreecommitdiff
path: root/include/kernel/mem.h
blob: dfbcf23e00c713eebe0588abccb0628072da67ae (plain)
1
2
3
4
5
6
7
8
9
#ifndef KERNEL_MEM_H

#include <kernel/paging.h>
#include <stddef.h>

int init_kmalloc(void);
void* kmalloc(size_t sz);

#endif