diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-23 14:03:28 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-23 14:15:18 +0200 |
| commit | f6f10575f75ac23d06e1d94f7861611503daa7af (patch) | |
| tree | 23c93eb6d63aac78cbe6c2b1b190665c1530e0dd /arch/x86_64/kapi | |
| parent | 2d8fed40bd0d0f8144783b6b344dc79944291b72 (diff) | |
| download | teachos-f6f10575f75ac23d06e1d94f7861611503daa7af.tar.xz teachos-f6f10575f75ac23d06e1d94f7861611503daa7af.zip | |
chore: banish relative includes
Diffstat (limited to 'arch/x86_64/kapi')
| -rw-r--r-- | arch/x86_64/kapi/boot_modules.cpp | 16 | ||||
| -rw-r--r-- | arch/x86_64/kapi/cio.cpp | 6 | ||||
| -rw-r--r-- | arch/x86_64/kapi/cpu.cpp | 16 | ||||
| -rw-r--r-- | arch/x86_64/kapi/devices.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/kapi/interrupts.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/kapi/memory.cpp | 26 | ||||
| -rw-r--r-- | arch/x86_64/kapi/system.cpp | 2 |
7 files changed, 36 insertions, 36 deletions
diff --git a/arch/x86_64/kapi/boot_modules.cpp b/arch/x86_64/kapi/boot_modules.cpp index 1a588cf..fb6bf46 100644 --- a/arch/x86_64/kapi/boot_modules.cpp +++ b/arch/x86_64/kapi/boot_modules.cpp @@ -1,13 +1,13 @@ -#include "kapi/boot_modules.hpp" +#include <kapi/boot_modules.hpp> -#include "arch/boot/boot.hpp" -#include "arch/boot/ld.hpp" +#include <arch/boot/boot.hpp> +#include <arch/boot/ld.hpp> -#include "kapi/boot.hpp" -#include "kapi/boot_module/boot_module.hpp" -#include "kapi/boot_module/boot_module_registry.hpp" -#include "kapi/memory.hpp" -#include "kapi/system.hpp" +#include <kapi/boot.hpp> +#include <kapi/boot_module/boot_module.hpp> +#include <kapi/boot_module/boot_module_registry.hpp> +#include <kapi/memory.hpp> +#include <kapi/system.hpp> #include <kstd/print> diff --git a/arch/x86_64/kapi/cio.cpp b/arch/x86_64/kapi/cio.cpp index 015cf5e..b33c6e0 100644 --- a/arch/x86_64/kapi/cio.cpp +++ b/arch/x86_64/kapi/cio.cpp @@ -1,7 +1,7 @@ -#include "kapi/cio.hpp" +#include <kapi/cio.hpp> -#include "arch/debug/qemu_output.hpp" -#include "arch/vga/text.hpp" +#include <arch/debug/qemu_output.hpp> +#include <arch/vga/text.hpp> #include <optional> diff --git a/arch/x86_64/kapi/cpu.cpp b/arch/x86_64/kapi/cpu.cpp index baeab4b..40dc228 100644 --- a/arch/x86_64/kapi/cpu.cpp +++ b/arch/x86_64/kapi/cpu.cpp @@ -1,13 +1,13 @@ -#include "kapi/cpu.hpp" +#include <kapi/cpu.hpp> -#include "arch/cpu/initialization.hpp" -#include "arch/devices/local_apic.hpp" +#include <arch/cpu/initialization.hpp> +#include <arch/devices/local_apic.hpp> -#include "kapi/acpi.hpp" -#include "kapi/devices.hpp" -#include "kapi/devices/cpu.hpp" -#include "kapi/memory.hpp" -#include "kapi/system.hpp" +#include <kapi/acpi.hpp> +#include <kapi/devices.hpp> +#include <kapi/devices/cpu.hpp> +#include <kapi/memory.hpp> +#include <kapi/system.hpp> #include <acpi/acpi.hpp> diff --git a/arch/x86_64/kapi/devices.cpp b/arch/x86_64/kapi/devices.cpp index 47c7f8c..f188c92 100644 --- a/arch/x86_64/kapi/devices.cpp +++ b/arch/x86_64/kapi/devices.cpp @@ -1,6 +1,6 @@ -#include "kapi/devices.hpp" +#include <kapi/devices.hpp> -#include "arch/devices/init.hpp" +#include <arch/devices/init.hpp> namespace kapi::devices { diff --git a/arch/x86_64/kapi/interrupts.cpp b/arch/x86_64/kapi/interrupts.cpp index cf1defa..85acc0f 100644 --- a/arch/x86_64/kapi/interrupts.cpp +++ b/arch/x86_64/kapi/interrupts.cpp @@ -1,4 +1,4 @@ -#include "kapi/interrupts.hpp" +#include <kapi/interrupts.hpp> namespace kapi::interrupts { diff --git a/arch/x86_64/kapi/memory.cpp b/arch/x86_64/kapi/memory.cpp index 423913d..5b870d5 100644 --- a/arch/x86_64/kapi/memory.cpp +++ b/arch/x86_64/kapi/memory.cpp @@ -1,16 +1,16 @@ -#include "kapi/memory.hpp" - -#include "arch/boot/boot.hpp" -#include "arch/boot/ld.hpp" -#include "arch/cpu/registers.hpp" -#include "arch/memory/higher_half_mapper.hpp" -#include "arch/memory/kernel_mapper.hpp" -#include "arch/memory/page_table.hpp" -#include "arch/memory/page_utilities.hpp" -#include "arch/memory/region_allocator.hpp" - -#include "kapi/boot.hpp" -#include "kapi/system.hpp" +#include <kapi/memory.hpp> + +#include <arch/boot/boot.hpp> +#include <arch/boot/ld.hpp> +#include <arch/cpu/registers.hpp> +#include <arch/memory/higher_half_mapper.hpp> +#include <arch/memory/kernel_mapper.hpp> +#include <arch/memory/page_table.hpp> +#include <arch/memory/page_utilities.hpp> +#include <arch/memory/region_allocator.hpp> + +#include <kapi/boot.hpp> +#include <kapi/system.hpp> #include <kstd/print> #include <kstd/units> diff --git a/arch/x86_64/kapi/system.cpp b/arch/x86_64/kapi/system.cpp index 09c7152..73a77e5 100644 --- a/arch/x86_64/kapi/system.cpp +++ b/arch/x86_64/kapi/system.cpp @@ -1,4 +1,4 @@ -#include "kapi/system.hpp" +#include <kapi/system.hpp> namespace kapi::system { |
