Luna/kernel/include/sys/elf/ELFLoader.h

8 lines
160 B
C
Raw Normal View History

2022-10-01 10:15:56 +00:00
#pragma once
#include <stdint.h>
namespace ELFLoader
{
void* load_elf_from_address(uintptr_t addr);
void* load_elf_from_initrd(const char* filename);
}