aboutsummaryrefslogtreecommitdiff
path: root/src/interp.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-24 20:05:41 +0800
committerMistivia <i@mistivia.com>2025-06-24 20:05:41 +0800
commit7b50a2a3c6213d58f9e6a824e8d33c43f2dd9f60 (patch)
tree2cce2d023aeafff685368f78809f8640a11a73b1 /src/interp.h
parenta19d0c8bc99948af39b43cc8291abfa89e5a57f8 (diff)
fix tailcall bug
Diffstat (limited to 'src/interp.h')
-rw-r--r--src/interp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interp.h b/src/interp.h
index 96173a7..3feecfa 100644
--- a/src/interp.h
+++ b/src/interp.h
@@ -88,6 +88,7 @@ void lisp_print(Interp *interp, SExpRef obj, FILE *fp);
SExpRef lisp_lookup(Interp *interp, SExpRef name);
SExpRef lisp_lookup_func(Interp *interp, SExpRef name);
SExpRef lisp_apply(Interp *interp, SExpRef fn, SExpRef args, bool istail);
+SExpRef lisp_call(Interp *interp, SExpRef fn, SExpRef args);
SExpRef lisp_cons(Interp *interp, SExpRef a, SExpRef b);
SExpRef lisp_dup(Interp *interp, SExpRef arg);
bool lisp_nilp(Interp *interp, SExpRef arg);