summaryrefslogtreecommitdiff
path: root/src/ll.c
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-03-23 22:11:15 -0500
committer@syxhe <https://t.me/syxhe>2025-03-23 22:11:15 -0500
commitb3bd3df103a5a75d267b2b79e85558768b1dc4bb (patch)
treeee3ad753b2db679295db846e7d80363e9b6552e7 /src/ll.c
parentc1b188af8c51e29c96a0422b79516d95696869e7 (diff)
Fix a whole bunch of shit, create an arena implementation
Diffstat (limited to 'src/ll.c')
-rw-r--r--src/ll.c2
1 files changed, 2 insertions, 0 deletions
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 @@
1#include "ll.h" 1#include "ll.h"
2#include "shared.h"
2 3
3#include <stddef.h> 4#include <stddef.h>
5#include <stdlib.h>
4 6
5void dlinkedlist_init(dlinkedlist **ll) { 7void dlinkedlist_init(dlinkedlist **ll) {
6 (*ll) = xcalloc(1, sizeof(**ll)); 8 (*ll) = xcalloc(1, sizeof(**ll));