Fixed missing includes for multiboot2 files

This commit is contained in:
2021-04-14 00:52:12 -05:00
parent 61a50fef10
commit 4c2ded8676
2 changed files with 3 additions and 0 deletions

View File

@@ -1,4 +1,6 @@
#include "multiboot2.h" #include "multiboot2.h"
#include "stdio.h"
#include "string.h"
void *read_multiboot_table(struct boot_info_t *boot_info, void *table) void *read_multiboot_table(struct boot_info_t *boot_info, void *table)
{ {

View File

@@ -1,6 +1,7 @@
#pragma once #pragma once
#include "memorymap.h" #include "memorymap.h"
#include "module.h"
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>