1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* eval.h (scm_eval_args, scm_deval_args, scm_m_undefine):

Missing declarations to functions in eval.c added.
This commit is contained in:
Jim Blandy 1996-09-11 20:25:44 +00:00
parent 4ad6f70593
commit c01e049b10

View file

@ -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 ();