Newer
Older
tree-os / src / kernel / lib / memory / alloc.h
@lukas lukas on 2 Apr 2021 151 bytes add basic tasking
#ifndef ALLOC_H
#define ALLOC_H

#include <stdint.h>

extern void initMemoryAllocation(uint32_t kernelEnd);
extern void* malloc(uint32_t size);

#endif