diff options
Diffstat (limited to 'libguile/continuations.h')
-rw-r--r-- | libguile/continuations.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/libguile/continuations.h b/libguile/continuations.h index 109a2998b..e34b17014 100644 --- a/libguile/continuations.h +++ b/libguile/continuations.h @@ -70,17 +70,9 @@ typedef struct -#ifdef __STDC__ -extern SCM scm_make_cont (SCM * answer); -extern void scm_dynthrow (SCM *a); -extern SCM scm_call_continuation (SCM cont, SCM val); -extern void scm_init_continuations (void); +extern SCM scm_make_cont SCM_P ((SCM * answer)); +extern void scm_dynthrow SCM_P ((SCM *a)); +extern SCM scm_call_continuation SCM_P ((SCM cont, SCM val)); +extern void scm_init_continuations SCM_P ((void)); -#else /* STDC */ -extern SCM scm_make_cont (); -extern void scm_dynthrow (); -extern SCM scm_call_continuation (); -extern void scm_init_continuations (); - -#endif /* STDC */ #endif /* CONTINUATIONSH */ |