diff options
Diffstat (limited to 'kernel/allocator.cpp')
-rw-r--r-- | kernel/allocator.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/allocator.cpp b/kernel/allocator.cpp index b04078c..807bc94 100644 --- a/kernel/allocator.cpp +++ b/kernel/allocator.cpp @@ -1,7 +1,7 @@ -#include <mercury/kernel/paging.hpp> +#include <hilbert/kernel/paging.hpp> #include <cstddef> -namespace mercury::kernel::allocator { +namespace hilbert::kernel::allocator { struct free_entry { uint64_t start; @@ -118,7 +118,7 @@ namespace mercury::kernel::allocator { } -using namespace mercury::kernel::allocator; +using namespace hilbert::kernel::allocator; void *_new(size_t len) { if (len == 0) |