diff options
author | Jim Blandy <jimb@red-bean.com> | 1998-09-30 10:14:59 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1998-09-30 10:14:59 +0000 |
commit | 8a04c1a2155a272b1f3f4189acc20643d3434ab3 (patch) | |
tree | 288f498dc5d7452a85bd19cca142edd525040e8d /libguile/root.h | |
parent | dc9f6d6a7d163cb11df1591e1dbde34d0a2bb3a1 (diff) | |
download | guile-8a04c1a2155a272b1f3f4189acc20643d3434ab3.tar.gz |
Warning fixes from Maciej Stachowiak:
* backtrace.h (scm_display_application, scm_backtrace): Add
prototypes.
* debug.c (scm_m_start_stack): Make this function static.
* fluids.h (scm_fluid_p): Add prototype.
* procprop.c (scm_i_procedure_arity): Make this function static.
* regex-posix.c (scm_regexp_error_msg): Make this function static.
* regex-posix.h (scm_init_regex_posix): Use prototype, not K&R decl.
* root.h (scm_dynamic_root): Add external prototype.
* scmsigs.h (scm_usleep): Add external prototype.
* script.h (scm_init_script): Use prototype, not K&R decl.
* stacks.h (scm_stack_id): Add external prototype.
* symbols.h (scm_sysintern0_no_module_lookup): Add external prototype.
Diffstat (limited to 'libguile/root.h')
-rw-r--r-- | libguile/root.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/root.h b/libguile/root.h index 032ad31ba..0e64d258f 100644 --- a/libguile/root.h +++ b/libguile/root.h @@ -161,6 +161,7 @@ extern SCM scm_internal_cwdr SCM_P ((scm_catch_body_t body, void *handler_data, SCM_STACKITEM *stack_start)); extern SCM scm_call_with_dynamic_root SCM_P ((SCM thunk, SCM handler)); +extern SCM scm_dynamic_root SCM_P ((void)); extern SCM scm_apply_with_dynamic_root SCM_P ((SCM proc, SCM a1, SCM args, SCM handler)); extern SCM scm_call_catching_errors SCM_P ((SCM (*thunk)(), SCM (*err_filter)(), void * closure)); extern void scm_init_root SCM_P ((void)); |