mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
11 lines
183 B
C
11 lines
183 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <common.h>
|
||
|
|
|
||
|
|
void *kmalloc(size_t size);
|
||
|
|
|
||
|
|
void *krealloc(void *ptr, size_t new_size);
|
||
|
|
|
||
|
|
void kfree(void *ptr);
|
||
|
|
|
||
|
|
void print_chunk_debug(void *ptr, bool recursive);
|