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

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

void* kmalloc(size_t sz);

#endif