From ace65b453151845bc361f21f3e5b651c35f9f126 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 22 May 2024 13:00:41 -0400 Subject: massive refactor for mp and organization --- include/arch/elf.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/arch/elf.h (limited to 'include/arch/elf.h') diff --git a/include/arch/elf.h b/include/arch/elf.h new file mode 100644 index 0000000..1b8c3dc --- /dev/null +++ b/include/arch/elf.h @@ -0,0 +1,12 @@ +#ifndef _JOVE_ARCH_ELF_H +#define _JOVE_ARCH_ELF_H 1 + +#ifdef __x86_64__ +#include "x86_64/elf.h" +#endif + +#include + +uintptr_t elf_load(const void *data, size_t len); + +#endif -- cgit v1.2.1