blob: 4247330a8719baa94c2428e6bcd1cdf48b1caff0 (
plain)
1
2
3
4
5
6
7
8
9
|
/** @file
* == elf ==
* https://docs.oracle.com/cd/E19455-01/806-3773/elf-2/index.html
*/
#include "multiboot.h"
uint32_t load_elf(char *name, uint32_t *alloc);
void elf_multiboot_read(multiboot_information *info);
|