From d43c1af88b1834a00f8b5f09aa0af1a5e4f5b4aa Mon Sep 17 00:00:00 2001 From: dzwdz Date: Mon, 18 Jul 2022 14:01:21 +0200 Subject: user: a super primitive ELF loader holy shit. this was simpler than i expected it to be --- src/user/lib/elfload.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/user/lib/elfload.h (limited to 'src/user/lib/elfload.h') diff --git a/src/user/lib/elfload.h b/src/user/lib/elfload.h new file mode 100644 index 0000000..c6afbdd --- /dev/null +++ b/src/user/lib/elfload.h @@ -0,0 +1,5 @@ +#pragma once +#include + +void elf_execf(libc_file *f); +void elf_exec(void *elf); -- cgit v1.2.3