From d7f901cf3e660cde141bd131ce99fc02d0ba7552 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sat, 5 Oct 1996 16:50:13 +0000 Subject: [PATCH] * procs.h: Added declarations of scm_thunk_p. --- libguile/procs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libguile/procs.h b/libguile/procs.h index d1fa58016..86d64f103 100644 --- a/libguile/procs.h +++ b/libguile/procs.h @@ -94,6 +94,7 @@ extern SCM scm_make_subr (char *name, int type, SCM (*fcn) ()); extern SCM scm_make_subr_opt (char *name, int type, SCM (*fcn) (), int set); extern SCM scm_makcclo (SCM proc, long len); extern SCM scm_procedure_p (SCM obj); +extern SCM scm_thunk_p (SCM obj); extern void scm_init_iprocs(scm_iproc *subra, int type); extern void scm_init_procs (void); @@ -102,6 +103,7 @@ extern SCM scm_make_subr (); extern SCM scm_make_subr_opt (); extern SCM scm_makcclo (); extern SCM scm_procedure_p (); +extern SCM scm_thunk_p (); extern void scm_init_iprocs(); extern void scm_init_procs ();