From 17e6219f24176feb67591a25b05181966a4c35b2 Mon Sep 17 00:00:00 2001 From: RaphProductions <81994075+RaphProductions@users.noreply.github.com> Date: Thu, 8 May 2025 21:58:31 +0200 Subject: [PATCH] log, printf: fix missing "rt.h" include --- kernel/src/sys/log.c | 1 - kernel/src/sys/printf.c | 1 - 2 files changed, 2 deletions(-) diff --git a/kernel/src/sys/log.c b/kernel/src/sys/log.c index c5ecf58..4c89f4f 100755 --- a/kernel/src/sys/log.c +++ b/kernel/src/sys/log.c @@ -1,4 +1,3 @@ -#include "rt.h" #include "sys/arch/x86_64/io.h" #include "sys/gfx/flanterm/flanterm.h" #include diff --git a/kernel/src/sys/printf.c b/kernel/src/sys/printf.c index 957cd27..f461521 100755 --- a/kernel/src/sys/printf.c +++ b/kernel/src/sys/printf.c @@ -2,7 +2,6 @@ // This code is part of the Soaplin kernel and is licensed under the terms of // the MIT License. #include "sys/gfx/flanterm/flanterm.h" -#include #include #define NANOPRINTF_USE_FIELD_WIDTH_FORMAT_SPECIFIERS 1