diff options
author | Preston Pan <preston@nullring.xyz> | 2024-01-09 12:04:19 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2024-01-09 12:04:19 -0800 |
commit | 0cfcbe979277f6d3b096b85d7fb6f4c02c366c72 (patch) | |
tree | bce0a91a88459050f9ba793796af440ec66b5c83 /builtins.h | |
parent | dfe729c98b63d0f6c0041799a0fb46b2f476502e (diff) |
fix invalid read/write of size 1; add framework for custom structs
Diffstat (limited to 'builtins.h')
-rw-r--r-- | builtins.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |