aboutsummaryrefslogtreecommitdiffstats
path: root/source/elf_load.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/elf_load.hpp')
-rw-r--r--source/elf_load.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/elf_load.hpp b/source/elf_load.hpp
index 3e03f1d..4fda526 100644
--- a/source/elf_load.hpp
+++ b/source/elf_load.hpp
@@ -6,9 +6,9 @@
namespace elf
{
- using entry_t = void (*)(uint16_t *, size_t);
+ using entry_t = uint16_t *(*)(uint16_t *, size_t);
- entry_t load(void *elf_data, void *elf_load_offset);
+ entry_t load(void *elf_data);
}
#endif // ELF_LOAD_HPP_