From 24773fbece5579f7e84a14a4a92a6fab4de2c3b7 Mon Sep 17 00:00:00 2001 From: apio Date: Fri, 30 Dec 2022 18:38:50 +0100 Subject: [PATCH] kernel/main: Remove reference to 'extern const BOOTBOOT bootboot' --- kernel/src/main.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/kernel/src/main.cpp b/kernel/src/main.cpp index 69569cba..521b3178 100644 --- a/kernel/src/main.cpp +++ b/kernel/src/main.cpp @@ -5,7 +5,6 @@ #include "arch/MMU.h" #include "arch/Timer.h" #include "boot/Init.h" -#include "boot/bootboot.h" #include "config.h" #include "memory/Heap.h" #include "memory/KernelVM.h" @@ -15,8 +14,6 @@ #include #include -extern const BOOTBOOT bootboot; - void heap_thread() { CPU::disable_interrupts();