From 55293ae396eb3409113c0edf73c2f661d008f9d6 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 20 Aug 2025 22:19:14 +0100 Subject: vec -> ivec I'm going to implement a normal stable vector instead of an inline vector so we have both options for use. I think that's smarter than just sticking to one. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 878c28c..a5c8f0a 100644 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/usr/bin/env sh CFLAGS="-Wall -Wextra -std=c11 -ggdb -fsanitize=address -fsanitize=undefined" -SRC="vec.c symtable.c tag.c constructor.c sys.c main.c" +SRC="ivec.c symtable.c tag.c constructor.c sys.c main.c" OUT="alisp.out" set -xe -- cgit v1.2.3-13-gbd6f