From 4c2ded8676817c996765647922472fe03aa18c98 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Wed, 14 Apr 2021 00:52:12 -0500 Subject: [PATCH] Fixed missing includes for multiboot2 files --- src/x86/multiboot2.c | 2 ++ src/x86/multiboot2.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/x86/multiboot2.c b/src/x86/multiboot2.c index bb7fc4e..c692b5f 100644 --- a/src/x86/multiboot2.c +++ b/src/x86/multiboot2.c @@ -1,4 +1,6 @@ #include "multiboot2.h" +#include "stdio.h" +#include "string.h" void *read_multiboot_table(struct boot_info_t *boot_info, void *table) { diff --git a/src/x86/multiboot2.h b/src/x86/multiboot2.h index b417ca4..ce65ddb 100644 --- a/src/x86/multiboot2.h +++ b/src/x86/multiboot2.h @@ -1,6 +1,7 @@ #pragma once #include "memorymap.h" +#include "module.h" #include #include