From b3bd3df103a5a75d267b2b79e85558768b1dc4bb Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Sun, 23 Mar 2025 22:11:15 -0500 Subject: Fix a whole bunch of shit, create an arena implementation --- src/ll.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ll.c') diff --git a/src/ll.c b/src/ll.c index c94a45b..b42f631 100644 --- a/src/ll.c +++ b/src/ll.c @@ -1,6 +1,8 @@ #include "ll.h" +#include "shared.h" #include +#include void dlinkedlist_init(dlinkedlist **ll) { (*ll) = xcalloc(1, sizeof(**ll)); -- cgit v1.2.3