* eval.h (scm_eval_args, scm_deval_args, scm_m_undefine):
authorJim Blandy <jimb@red-bean.com>
Wed, 11 Sep 1996 20:25:44 +0000 (20:25 +0000)
committerJim Blandy <jimb@red-bean.com>
Wed, 11 Sep 1996 20:25:44 +0000 (20:25 +0000)
Missing declarations to functions in eval.c added.

libguile/eval.h

index 4f3abc1..d793924 100644 (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 ();