diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-11-02 00:08:10 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-11-02 00:08:10 +0000 |
commit | e4e933734c267ff14e02f3ae721c06223803dd65 (patch) | |
tree | 4d50b9a64bd673f3f6462a675cd1841fe06951f1 /libguile/backtrace.h | |
parent | 1174045c9ade5765b91d80d12af7f70b7744f305 (diff) | |
download | guile-e4e933734c267ff14e02f3ae721c06223803dd65.tar.gz |
Prefixed each each exported symbol with SCM_API.
Diffstat (limited to 'libguile/backtrace.h')
-rw-r--r-- | libguile/backtrace.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libguile/backtrace.h b/libguile/backtrace.h index 0c0b7417b..482488da5 100644 --- a/libguile/backtrace.h +++ b/libguile/backtrace.h @@ -51,19 +51,19 @@ #include "libguile/__scm.h" -extern SCM scm_the_last_stack_fluid_var; +SCM_API SCM scm_the_last_stack_fluid_var; -void scm_display_error_message (SCM message, SCM args, SCM port); -void scm_i_display_error (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest); -SCM scm_display_error (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest); -SCM scm_display_application (SCM frame, SCM port, SCM indent); -SCM scm_display_backtrace (SCM stack, SCM port, SCM first, SCM depth); -SCM scm_backtrace (void); +SCM_API void scm_display_error_message (SCM message, SCM args, SCM port); +SCM_API void scm_i_display_error (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest); +SCM_API SCM scm_display_error (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest); +SCM_API SCM scm_display_application (SCM frame, SCM port, SCM indent); +SCM_API SCM scm_display_backtrace (SCM stack, SCM port, SCM first, SCM depth); +SCM_API SCM scm_backtrace (void); #ifdef GUILE_DEBUG -SCM scm_set_print_params_x (SCM params); +SCM_API SCM scm_set_print_params_x (SCM params); #endif -void scm_init_backtrace (void); +SCM_API void scm_init_backtrace (void); #endif /* SCM_BACKTRACE_H */ |