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

#include <stddef.h>

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

#endif