summaryrefslogtreecommitdiffstats
path: root/include/arch/elf.h
blob: 1b8c3dca2f59639502728e6739a540c6bffab8ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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