mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-05-15 09:01:27 -07:00
12 lines
224 B
C
12 lines
224 B
C
#ifndef KMALLOC_H
|
|
#define KMALLOC_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h> // for size_t
|
|
|
|
void kmalloc_init(uint32_t heap_start);
|
|
void* kmalloc(size_t size);
|
|
void* kmalloc_aligned(size_t size, uint32_t alignment);
|
|
|
|
#endif
|