From 0cfcbe979277f6d3b096b85d7fb6f4c02c366c72 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Tue, 9 Jan 2024 12:04:19 -0800 Subject: fix invalid read/write of size 1; add framework for custom structs --- builtins.h | 1 + 1 file changed, 1 insertion(+) (limited to 'builtins.h') diff --git a/builtins.h b/builtins.h index a32125d..28c5dcd 100644 --- a/builtins.h +++ b/builtins.h @@ -1,6 +1,7 @@ #ifndef BUILTINS_H_ #define BUILTINS_H_ #include "./parser.h" + void stemadd(value_t *v); void stemsub(value_t *v); void stemmul(value_t *v); -- cgit