summaryrefslogtreecommitdiff
path: root/libguile/backtrace.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1998-09-30 10:14:59 +0000
committerJim Blandy <jimb@red-bean.com>1998-09-30 10:14:59 +0000
commit8a04c1a2155a272b1f3f4189acc20643d3434ab3 (patch)
tree288f498dc5d7452a85bd19cca142edd525040e8d /libguile/backtrace.h
parentdc9f6d6a7d163cb11df1591e1dbde34d0a2bb3a1 (diff)
downloadguile-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/backtrace.h')
-rw-r--r--libguile/backtrace.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/backtrace.h b/libguile/backtrace.h
index fd630afef..e7318425e 100644
--- a/libguile/backtrace.h
+++ b/libguile/backtrace.h
@@ -53,7 +53,9 @@ extern SCM scm_the_last_stack_fluid;
void scm_display_error_message SCM_P ((SCM message, SCM args, SCM port));
SCM scm_display_error SCM_P ((SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest));
+SCM scm_display_application SCM_P ((SCM frame, SCM port));
SCM scm_display_backtrace SCM_P ((SCM stack, SCM port, SCM first, SCM depth));
+SCM scm_backtrace SCM_P ((void));
void scm_init_backtrace SCM_P ((void));