aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/system.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2025-07-24 15:31:31 +0000
committerFelix Morgner <felix.morgner@ost.ch>2025-07-24 15:31:31 +0000
commit4edbe94ce1266c9acc6a695fedf1d2edd4ce11cd (patch)
tree6738e5ab071075c15beccc59b3f79f53477f477d /arch/x86_64/src/system.cpp
parent2b8fafa2bddc48ddec047de517115c8e65ee61e8 (diff)
downloadteachos-4edbe94ce1266c9acc6a695fedf1d2edd4ce11cd.tar.xz
teachos-4edbe94ce1266c9acc6a695fedf1d2edd4ce11cd.zip
build: factor out kernel API
Diffstat (limited to 'arch/x86_64/src/system.cpp')
-rw-r--r--arch/x86_64/src/system.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86_64/src/system.cpp b/arch/x86_64/src/system.cpp
index 60ebf0e..2d4c3fe 100644
--- a/arch/x86_64/src/system.cpp
+++ b/arch/x86_64/src/system.cpp
@@ -1,6 +1,6 @@
-#include "arch/system.hpp"
+#include "kapi/system.hpp"
-namespace teachos::arch::system
+namespace teachos::system
{
auto halt() -> void
@@ -9,4 +9,4 @@ namespace teachos::arch::system
__builtin_unreachable();
}
-} // namespace teachos::arch::system
+} // namespace teachos::system