aboutsummaryrefslogtreecommitdiffstats
path: root/source/elf_load.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-11-12 09:45:16 -0500
committerClyne Sullivan <clyne@bitgloo.com>2020-11-12 09:45:16 -0500
commit0fde1b98eee06eda8333ae4099a6731a05a14482 (patch)
tree263826f916da816b0d7f8bf92b16f34fcc4aeaf6 /source/elf_load.hpp
parent1ade2969fb22c6bab4152f5e157f09e3675e8da1 (diff)
firmware reorganize; added more sample rates
Diffstat (limited to 'source/elf_load.hpp')
-rw-r--r--source/elf_load.hpp6
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_