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/src/vga/text | |
| parent | 2d8fed40bd0d0f8144783b6b344dc79944291b72 (diff) | |
| download | teachos-f6f10575f75ac23d06e1d94f7861611503daa7af.tar.xz teachos-f6f10575f75ac23d06e1d94f7861611503daa7af.zip | |
chore: banish relative includes
Diffstat (limited to 'arch/x86_64/src/vga/text')
| -rw-r--r-- | arch/x86_64/src/vga/text/buffer.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/src/vga/text/device.cpp | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/x86_64/src/vga/text/buffer.cpp b/arch/x86_64/src/vga/text/buffer.cpp index 7112573..498b9a3 100644 --- a/arch/x86_64/src/vga/text/buffer.cpp +++ b/arch/x86_64/src/vga/text/buffer.cpp @@ -1,6 +1,6 @@ -#include "arch/vga/text/buffer.hpp" +#include <arch/vga/text/buffer.hpp> -#include "arch/vga/text/attribute.hpp" +#include <arch/vga/text/attribute.hpp> #include <algorithm> #include <bit> diff --git a/arch/x86_64/src/vga/text/device.cpp b/arch/x86_64/src/vga/text/device.cpp index 0ecbef9..8468358 100644 --- a/arch/x86_64/src/vga/text/device.cpp +++ b/arch/x86_64/src/vga/text/device.cpp @@ -1,9 +1,9 @@ -#include "arch/boot/boot.hpp" -#include "arch/boot/ld.hpp" -#include "arch/vga/crtc.hpp" -#include "arch/vga/text.hpp" +#include <arch/boot/boot.hpp> +#include <arch/boot/ld.hpp> +#include <arch/vga/crtc.hpp> +#include <arch/vga/text.hpp> -#include "kapi/cio.hpp" +#include <kapi/cio.hpp> #include <bit> #include <cstddef> |
