From ff43bd2fb2c2617b53a0157d62d07cf96b2ef92f Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sat, 20 Jan 2024 16:37:26 -0800 Subject: add more detailed error messages; fix a couple bugs --- include/builtins.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/builtins.h') 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(); -- cgit