diff options
Diffstat (limited to 'libguile/eval.h')
-rw-r--r-- | libguile/eval.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index 133d8b4c2..35de8a6b2 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -231,6 +231,14 @@ extern SCM scm_m_at_call_with_values (SCM xorig, SCM env); extern int scm_badargsp (SCM formals, SCM args); extern SCM scm_ceval (SCM x, SCM env); extern SCM scm_deval (SCM x, SCM env); +extern SCM scm_call_0 (SCM proc); +extern SCM scm_call_1 (SCM proc, SCM arg1); +extern SCM scm_call_2 (SCM proc, SCM arg1, SCM arg2); +extern SCM scm_call_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3); +extern SCM scm_apply_0 (SCM proc, SCM args); +extern SCM scm_apply_1 (SCM proc, SCM arg1, SCM args); +extern SCM scm_apply_2 (SCM proc, SCM arg1, SCM arg2, SCM args); +extern SCM scm_apply_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM args); extern SCM scm_nconc2last (SCM lst); extern SCM scm_apply (SCM proc, SCM arg1, SCM args); extern SCM scm_dapply (SCM proc, SCM arg1, SCM args); |