diff options
author | Preston Pan <preston@nullring.xyz> | 2024-01-20 16:37:26 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2024-01-20 16:37:26 -0800 |
commit | ff43bd2fb2c2617b53a0157d62d07cf96b2ef92f (patch) | |
tree | 3dbd2aa8f7c1af171edb232fb56c00879b3876ab /include/builtins.h | |
parent | a9d6c221d7686e3055593359b02125a3f20ab3e5 (diff) |
add more detailed error messages; fix a couple bugs
Diffstat (limited to 'include/builtins.h')
-rw-r--r-- | include/builtins.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/builtins.h b/include/builtins.h index 629b935..38b9965 100644 --- a/include/builtins.h +++ b/include/builtins.h @@ -154,6 +154,10 @@ void stemfwrite(value_t *v); /*! @brief [VINT/VFLOAT] sleep; sleeps for an amount of seconds. */ void stemsleep(value_t *v); +void stemcut(value_t *v); + +void undef(value_t *v); + /*! @brief adds all the custom objects defined to OBJ_TABLE */ void add_objs(); |