aboutsummaryrefslogtreecommitdiff
path: root/kernel/kstd
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-04-23 14:03:28 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-04-23 14:15:18 +0200
commitf6f10575f75ac23d06e1d94f7861611503daa7af (patch)
tree23c93eb6d63aac78cbe6c2b1b190665c1530e0dd /kernel/kstd
parent2d8fed40bd0d0f8144783b6b344dc79944291b72 (diff)
downloadteachos-f6f10575f75ac23d06e1d94f7861611503daa7af.tar.xz
teachos-f6f10575f75ac23d06e1d94f7861611503daa7af.zip
chore: banish relative includes
Diffstat (limited to 'kernel/kstd')
-rw-r--r--kernel/kstd/os.cpp2
-rw-r--r--kernel/kstd/print.cpp2
-rw-r--r--kernel/kstd/print.tests.cpp4
3 files changed, 4 insertions, 4 deletions
diff --git a/kernel/kstd/os.cpp b/kernel/kstd/os.cpp
index 21254c4..ae69e7e 100644
--- a/kernel/kstd/os.cpp
+++ b/kernel/kstd/os.cpp
@@ -1,4 +1,4 @@
-#include "kapi/system.hpp"
+#include <kapi/system.hpp>
#include <kstd/os/error.hpp>
diff --git a/kernel/kstd/print.cpp b/kernel/kstd/print.cpp
index a2e7fe7..d0611b2 100644
--- a/kernel/kstd/print.cpp
+++ b/kernel/kstd/print.cpp
@@ -1,6 +1,6 @@
#include <kstd/os/print.hpp>
-#include "kapi/cio.hpp"
+#include <kapi/cio.hpp>
#include <kstd/bits/format/output_buffer.hpp>
#include <kstd/format>
diff --git a/kernel/kstd/print.tests.cpp b/kernel/kstd/print.tests.cpp
index 8deeb17..4963f46 100644
--- a/kernel/kstd/print.tests.cpp
+++ b/kernel/kstd/print.tests.cpp
@@ -1,6 +1,6 @@
-#include "kstd/print"
+#include <kstd/print>
-#include "kernel/test_support/cio.hpp"
+#include <kernel/test_support/cio.hpp>
#include <catch2/catch_test_macros.hpp>