From 294b1b2e3eba176d66ecc873b61de3fd1fd7ec30 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Thu, 29 Jul 1999 09:53:48 +0000 Subject: [PATCH] * eval.h: Added prototypes for multi language support functions. --- libguile/eval.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libguile/eval.h b/libguile/eval.h index 5a24f8fc7..bbc8f6095 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -179,6 +179,14 @@ extern SCM scm_m_letrec SCM_P ((SCM xorig, SCM env)); extern SCM scm_m_let SCM_P ((SCM xorig, SCM env)); extern SCM scm_m_apply SCM_P ((SCM xorig, SCM env)); extern SCM scm_m_cont SCM_P ((SCM xorig, SCM env)); +extern SCM scm_m_nil_cond (SCM xorig, SCM env); +extern SCM scm_m_nil_ify (SCM xorig, SCM env); +extern SCM scm_m_t_ify (SCM xorig, SCM env); +extern SCM scm_m_0_cond (SCM xorig, SCM env); +extern SCM scm_m_0_ify (SCM xorig, SCM env); +extern SCM scm_m_1_ify (SCM xorig, SCM env); +extern SCM scm_m_atfop (SCM xorig, SCM env); +extern SCM scm_m_atbind (SCM xorig, SCM env); extern int scm_badargsp SCM_P ((SCM formals, SCM args)); extern SCM scm_ceval SCM_P ((SCM x, SCM env)); extern SCM scm_deval SCM_P ((SCM x, SCM env));