From c177bfeb1dbb5ec96af3a882d708a7fca3a5e1fe Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Tue, 19 Oct 2021 18:42:47 +0200 Subject: Change FreeList to use darray.h --- src/bootstrap/gc.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/bootstrap/gc.h') diff --git a/src/bootstrap/gc.h b/src/bootstrap/gc.h index 90a1196..0a0bbd0 100644 --- a/src/bootstrap/gc.h +++ b/src/bootstrap/gc.h @@ -5,9 +5,7 @@ #include "environment.h" typedef struct FreeList { - size_t *buf; - size_t size; - size_t cap; + size_t *offsets; size_t position; } FreeList; -- cgit v1.2.1