summaryrefslogtreecommitdiff
path: root/kernel/src/mem/heap.c
blob: 545f6ea66d242484a14c73dca2b9cbc5eb44bb0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <heap.h>

void init_heap(uint64_t addr, uint64_t size, uint64_t block_size)
{

}

void* kmalloc(uint32_t size)
{
	return (uint64_t*)0x0;
}

void kfree(void *addr)
{

}