From d6c7f2deab565e0a82fa7069c94d766a8bacc7c8 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 28 Sep 1996 00:04:22 +0000 Subject: [PATCH] * throw.h, throw.c: Use SCM_P instead of #if hair. --- libguile/throw.h | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/libguile/throw.h b/libguile/throw.h index b5b80fe2c..a1b0b4572 100644 --- a/libguile/throw.h +++ b/libguile/throw.h @@ -47,21 +47,8 @@ #include "libguile/__scm.h" - - -#ifdef __STDC__ -extern SCM scm_catch (SCM tag, SCM thunk, SCM handler); -extern SCM scm_ithrow (SCM key, SCM args, int noreturn); -extern SCM scm_throw (SCM key, SCM args); -extern void scm_init_throw (void); - -#else /* STDC */ -extern SCM scm_catch (); -extern SCM scm_ithrow (); -extern SCM scm_throw (); -extern void scm_init_throw (); - -#endif /* STDC */ - - +extern SCM scm_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)); #endif /* THROWH */