diff --git a/kernel/common/libELF/elf.c b/kernel/common/libELF/elf.c new file mode 100644 index 00000000..1e65ce4c --- /dev/null +++ b/kernel/common/libELF/elf.c @@ -0,0 +1 @@ +#include "elf.h" \ No newline at end of file diff --git a/kernel/common/libELF/elf.h b/kernel/common/libELF/elf.h new file mode 100644 index 00000000..082febb6 --- /dev/null +++ b/kernel/common/libELF/elf.h @@ -0,0 +1,10 @@ +#pragma once +#include + +// ====== ELF头文件中的 +typedef uint32_t Elf32_Addr; +typedef uint16_t Elf32_Half; +typedef uint32_t Elf32_Off; +typedef uint32_t Elf32_SWord; +typedef uint32_t Elf32_Word; +