fslongjin 2 жил өмнө
parent
commit
46b08c7738

+ 1 - 0
kernel/common/libELF/elf.c

@@ -0,0 +1 @@
+#include "elf.h"

+ 10 - 0
kernel/common/libELF/elf.h

@@ -0,0 +1,10 @@
+#pragma once
+#include <common/glib.h>
+
+// ====== 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;
+