10 lines
183 B
C
10 lines
183 B
C
#pragma once
|
|
|
|
#include <efi.h>
|
|
|
|
void init_heap();
|
|
void* kmalloc(UINTN size);
|
|
void kfree(void* ptr);
|
|
void* kcalloc(UINTN num, UINTN size);
|
|
void* krealloc(void* ptr, UINTN new_size);
|