diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-07-29 09:53:48 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-07-29 09:53:48 +0000 |
commit | 294b1b2e3eba176d66ecc873b61de3fd1fd7ec30 (patch) | |
tree | 67f152217be380d9884811527bbfbc9f8f56ff0e /libguile/eval.h | |
parent | 4725c2983fefb4215fc47d98cb3410803af6df18 (diff) | |
download | guile-294b1b2e3eba176d66ecc873b61de3fd1fd7ec30.tar.gz |
* eval.h: Added prototypes for multi language support functions.
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 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)); |