aboutsummaryrefslogtreecommitdiff
path: root/common/elf.c
blob: 83411e9aa15d7283ac0952ae9c576dcbad217dde (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <apos/elf.h>
#include <apos/vmem.h>

vm_t bin_entry(vm_t bin)
{
	struct elf_header *e = (struct elf_header *)bin;
	/* TODO: check that address points to a valid ELF executable */
	return ((vm_t)e->e_entry) + bin;
}