diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:25:44 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:25:44 +0000 |
commit | c01e049b101437208c5a44d4d95a2e6adb3497a0 (patch) | |
tree | fd43d7fd5a938d98f255e80fa9056031c78842a5 | |
parent | 4ad6f705935d040cbb30b2da788e94eabdb3e2a1 (diff) | |
download | guile-c01e049b101437208c5a44d4d95a2e6adb3497a0.tar.gz |
* eval.h (scm_eval_args, scm_deval_args, scm_m_undefine):
Missing declarations to functions in eval.c added.
-rw-r--r-- | libguile/eval.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index 4f3abc1da..d7939249a 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -114,6 +114,8 @@ extern SCM * scm_lookupcar (SCM vloc, SCM genv); extern SCM scm_unmemocar (SCM form, SCM env); extern SCM scm_unmemocopy (SCM form, SCM env); extern SCM scm_eval_car (SCM pair, SCM env); +extern SCM scm_eval_args (SCM i, SCM env); +extern SCM scm_deval_args (SCM l, SCM env, SCM *lloc); extern SCM scm_m_quote (SCM xorig, SCM env); extern SCM scm_m_begin (SCM xorig, SCM env); extern SCM scm_m_if (SCM xorig, SCM env); @@ -134,6 +136,7 @@ extern SCM scm_m_letrec (SCM xorig, SCM env); extern SCM scm_m_let (SCM xorig, SCM env); extern SCM scm_m_apply (SCM xorig, SCM env); extern SCM scm_m_cont (SCM xorig, SCM env); +extern SCM scm_m_undefine (SCM x, 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); @@ -168,6 +171,8 @@ extern SCM * scm_lookupcar (); extern SCM scm_unmemocar (); extern SCM scm_unmemocopy (); extern SCM scm_eval_car (); +extern SCM scm_eval_args (); +extern SCM scm_deval_args (); extern SCM scm_m_quote (); extern SCM scm_m_begin (); extern SCM scm_m_if (); @@ -188,6 +193,7 @@ extern SCM scm_m_letrec (); extern SCM scm_m_let (); extern SCM scm_m_apply (); extern SCM scm_m_cont (); +extern SCM scm_m_undefine (); extern int scm_badargsp (); extern SCM scm_ceval (); extern SCM scm_deval (); |