From 2cf843ae6de1f35e5a5d3a947d0179337e82752f Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Sat, 6 Dec 2025 20:14:28 -0500 Subject: misc: C++->C 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. --- kernel/include/libk/liballoc.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'kernel/include/libk/liballoc.h') diff --git a/kernel/include/libk/liballoc.h b/kernel/include/libk/liballoc.h index b1568e9..82186c4 100644 --- a/kernel/include/libk/liballoc.h +++ b/kernel/include/libk/liballoc.h @@ -21,9 +21,6 @@ #include -namespace LibAlloc -{ - /** This is a boundary tag which is prepended to the * page or section of a page which we have allocated. It is * used to identify valid memory blocks that the @@ -47,6 +44,4 @@ void *krealloc(void *, size_t); void *kcalloc(size_t, size_t); void kfree(void *); -} - #endif -- cgit v1.2.3