[libc-commits] [libc] [WIP][libc] Add freelist malloc (PR #94270)
via libc-commits
libc-commits at lists.llvm.org
Tue Jun 4 14:47:07 PDT 2024
================
@@ -0,0 +1,125 @@
+#include "freelist.h"
+#include "src/__support/CPP/span.h"
+#include <stddef.h>
+
+using LIBC_NAMESPACE::cpp::span;
+
+namespace pw::allocator {
----------------
PiJoules wrote:
The freelist should be header-only now and I accidentally left this in. Removed it.
https://github.com/llvm/llvm-project/pull/94270
More information about the libc-commits
mailing list