summaryrefslogtreecommitdiff
path: root/libguile/async.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-11-02 00:08:10 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-11-02 00:08:10 +0000
commite4e933734c267ff14e02f3ae721c06223803dd65 (patch)
tree4d50b9a64bd673f3f6462a675cd1841fe06951f1 /libguile/async.h
parent1174045c9ade5765b91d80d12af7f70b7744f305 (diff)
downloadguile-e4e933734c267ff14e02f3ae721c06223803dd65.tar.gz
Prefixed each each exported symbol with SCM_API.
Diffstat (limited to 'libguile/async.h')
-rw-r--r--libguile/async.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/libguile/async.h b/libguile/async.h
index ed2d7c416..7cdb81cd1 100644
--- a/libguile/async.h
+++ b/libguile/async.h
@@ -50,24 +50,24 @@
-extern unsigned int scm_mask_ints;
+SCM_API unsigned int scm_mask_ints;
-extern int scm_asyncs_pending (void);
-extern void scm_async_click (void);
-extern void scm_switch (void);
-extern SCM scm_async (SCM thunk);
-extern SCM scm_system_async (SCM thunk);
-extern SCM scm_async_mark (SCM a);
-extern SCM scm_system_async_mark (SCM a);
-extern SCM scm_run_asyncs (SCM list_of_a);
-extern SCM scm_noop (SCM args);
-extern SCM scm_set_tick_rate (SCM n);
-extern SCM scm_set_switch_rate (SCM n);
-extern SCM scm_unmask_signals (void);
-extern SCM scm_mask_signals (void);
-extern void scm_init_async (void);
+SCM_API int scm_asyncs_pending (void);
+SCM_API void scm_async_click (void);
+SCM_API void scm_switch (void);
+SCM_API SCM scm_async (SCM thunk);
+SCM_API SCM scm_system_async (SCM thunk);
+SCM_API SCM scm_async_mark (SCM a);
+SCM_API SCM scm_system_async_mark (SCM a);
+SCM_API SCM scm_run_asyncs (SCM list_of_a);
+SCM_API SCM scm_noop (SCM args);
+SCM_API SCM scm_set_tick_rate (SCM n);
+SCM_API SCM scm_set_switch_rate (SCM n);
+SCM_API SCM scm_unmask_signals (void);
+SCM_API SCM scm_mask_signals (void);
+SCM_API void scm_init_async (void);
#endif /* SCM_ASYNC_H */