aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/elf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/fs/elf.c')
-rw-r--r--src/kernel/fs/elf.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/kernel/fs/elf.c b/src/kernel/fs/elf.c
index 9a9b105..3d7fcde 100644
--- a/src/kernel/fs/elf.c
+++ b/src/kernel/fs/elf.c
@@ -1,13 +1,14 @@
-#include <stdint.h>
-#include <stddef.h>
-#include <system.h>
#include <fs/elf.h>
+#include <fs/ext2.h>
+#include <gdt/gdt.h>
+#include <lib/lib.h>
#include <lib/stdio.h>
+#include <lib/stdlib.h>
#include <memory/alloc.h>
-#include <lib/lib.h>
#include <memory/paging.h>
-#include <fs/ext2.h>
-#include <gdt/gdt.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <system.h>
#include <tasks/process.h>
int is_elf(struct elf_header *header)