diff options
Diffstat (limited to 'source/elf_load.hpp')
-rw-r--r-- | source/elf_load.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/elf_load.hpp b/source/elf_load.hpp index faa74d2..619dada 100644 --- a/source/elf_load.hpp +++ b/source/elf_load.hpp @@ -15,11 +15,11 @@ #include <cstddef> #include <cstdint> -namespace elf +namespace ELF { - using entry_t = uint16_t *(*)(uint16_t *, size_t); + using Entry = uint16_t *(*)(uint16_t *, size_t); - entry_t load(void *elf_data); + Entry load(void *elf_data); } #endif // ELF_LOAD_HPP_ |