summaryrefslogtreecommitdiff
path: root/lib/elf.h
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2023-01-30 00:05:53 +0000
committerAda Christine <adachristine18@gmail.com>2023-01-30 00:05:53 +0000
commit798b1dc391f424868f5f4bac8937c191ed4716b8 (patch)
tree44269b4f29b8c6762657e12a02ac33063b665461 /lib/elf.h
parentfba7a0f3cde6217235663fcfb300b63cb8d7c2df (diff)
headers moved around
Diffstat (limited to 'lib/elf.h')
-rw-r--r--lib/elf.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/elf.h b/lib/elf.h
deleted file mode 100644
index 05d25bc..0000000
--- a/lib/elf.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#pragma once
-
-#include <elf/elf64.h>
-
-#include <stdbool.h>
-#include <stddef.h>
-
-#ifdef __x86_64__
-# define elf_validate elf64_validate
-# define elf_size elf64_size
-#endif
-
-bool elf64_validate(Elf64_Ehdr *ehdr, unsigned type, unsigned machine);
-size_t elf64_size(Elf64_Ehdr *ehdr, Elf64_Phdr *phdr);
-