aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/mm/page_table_allocator.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-12-06 20:14:28 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2025-12-06 20:14:28 -0500
commit2cf843ae6de1f35e5a5d3a947d0179337e82752f (patch)
tree7e7983be37568fb0f9cbd806de94573a61df83ca /kernel/include/mm/page_table_allocator.h
parent096d9ab61281062b6672c6c9f413de97e034d3f7 (diff)
misc: C++->CHEADmain
I know; it's POINTLESS! However, I do enjoy programming in C more than C++ so I ended up spending the hour it takes converting this project from C++ to C.
Diffstat (limited to 'kernel/include/mm/page_table_allocator.h')
-rw-r--r--kernel/include/mm/page_table_allocator.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/kernel/include/mm/page_table_allocator.h b/kernel/include/mm/page_table_allocator.h
index 4a0b0fb..80de80e 100644
--- a/kernel/include/mm/page_table_allocator.h
+++ b/kernel/include/mm/page_table_allocator.h
@@ -21,12 +21,7 @@
#include <stdint.h>
-namespace PageTableAllocator
-{
-
-uint32_t *allocate(void);
-void initialize(void);
-
-}
+uint32_t *pta_allocate(void);
+void pta_initialize(void);
#endif