summaryrefslogtreecommitdiffstats
path: root/include/arch/elf.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arch/elf.h')
-rw-r--r--include/arch/elf.h12
1 files changed, 12 insertions, 0 deletions
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 <stddef.h>
+
+uintptr_t elf_load(const void *data, size_t len);
+
+#endif