blob: 4fda5262273938cfaf52b42b8e9817eed1319132 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ELF_LOAD_HPP_
#define ELF_LOAD_HPP_
#include <cstddef>
#include <cstdint>
namespace elf
{
using entry_t = uint16_t *(*)(uint16_t *, size_t);
entry_t load(void *elf_data);
}
#endif // ELF_LOAD_HPP_
|