diff options
author | Preston Pan <preston@nullring.xyz> | 2024-01-09 19:55:24 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2024-01-09 19:55:24 -0800 |
commit | bb26e7e9581f507772521ebb447f897a8f68ad57 (patch) | |
tree | 655aec6c85930f5f34c5a0f930217b21cc0c6aab /include/builtins.h | |
parent | 707cf3115f060fe385a253b08badd701d3caea42 (diff) |
add sleep; fix bugs
Diffstat (limited to 'include/builtins.h')
-rw-r--r-- | include/builtins.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/builtins.h b/include/builtins.h index 148fba7..89fb26d 100644 --- a/include/builtins.h +++ b/include/builtins.h @@ -49,6 +49,8 @@ void ssize(value_t *v); void qstack(value_t *v); void vat(value_t *v); void stemfwrite(value_t *v); +void stemsleep(value_t *v); +void add_objs(); void add_funcs(); #endif // BUILTINS_H_ |