From f3b85c26820d07b820d7159807e1ffd6786e50e0 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sat, 5 Oct 1996 16:51:02 +0000 Subject: [PATCH] * throw.h: Added prototypes for scm_catch_apply and scm_lazy_catch. --- libguile/throw.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libguile/throw.h b/libguile/throw.h index 9c8acdd76..4df81d863 100644 --- a/libguile/throw.h +++ b/libguile/throw.h @@ -48,7 +48,9 @@ +extern SCM scm_catch_apply SCM_P ((SCM tag, SCM proc, SCM a1, SCM args, SCM handler, int lazyp)); extern SCM scm_catch SCM_P ((SCM tag, SCM thunk, SCM handler)); +extern SCM scm_lazy_catch SCM_P ((SCM tag, SCM thunk, SCM handler)); extern SCM scm_ithrow SCM_P ((SCM key, SCM args, int noreturn)); extern SCM scm_throw SCM_P ((SCM key, SCM args)); extern void scm_init_throw SCM_P ((void));