summaryrefslogtreecommitdiff
path: root/libguile/sort.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-11-02 00:19:12 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-11-02 00:19:12 +0000
commit33b001fd89d070cc6e2d8a0d6d6c43fe90555972 (patch)
treea8a211f9c5e1e4cd8161f776b6858e3366e68aab /libguile/sort.h
parent1dcb9876f51c1c87ee94690544e7b68b0c7893be (diff)
downloadguile-33b001fd89d070cc6e2d8a0d6d6c43fe90555972.tar.gz
Prefixed each each exported symbol with SCM_API.
Diffstat (limited to 'libguile/sort.h')
-rw-r--r--libguile/sort.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/libguile/sort.h b/libguile/sort.h
index ed98a3212..9f16f59bb 100644
--- a/libguile/sort.h
+++ b/libguile/sort.h
@@ -50,20 +50,20 @@
-extern SCM scm_restricted_vector_sort_x (SCM vec,
- SCM less,
- SCM startpos,
- SCM endpos);
-extern SCM scm_sorted_p (SCM ls, SCM less);
-extern SCM scm_merge (SCM ls1, SCM ls2, SCM less);
-extern SCM scm_merge_x (SCM ls1, SCM ls2, SCM less);
-extern SCM scm_sort (SCM ls, SCM less);
-extern SCM scm_sort_x (SCM ls, SCM less);
-extern SCM scm_stable_sort (SCM ls, SCM less);
-extern SCM scm_stable_sort_x (SCM ls, SCM less);
-extern SCM scm_sort_list (SCM ls, SCM less);
-extern SCM scm_sort_list_x (SCM ls, SCM less);
-extern void scm_init_sort (void);
+SCM_API SCM scm_restricted_vector_sort_x (SCM vec,
+ SCM less,
+ SCM startpos,
+ SCM endpos);
+SCM_API SCM scm_sorted_p (SCM ls, SCM less);
+SCM_API SCM scm_merge (SCM ls1, SCM ls2, SCM less);
+SCM_API SCM scm_merge_x (SCM ls1, SCM ls2, SCM less);
+SCM_API SCM scm_sort (SCM ls, SCM less);
+SCM_API SCM scm_sort_x (SCM ls, SCM less);
+SCM_API SCM scm_stable_sort (SCM ls, SCM less);
+SCM_API SCM scm_stable_sort_x (SCM ls, SCM less);
+SCM_API SCM scm_sort_list (SCM ls, SCM less);
+SCM_API SCM scm_sort_list_x (SCM ls, SCM less);
+SCM_API void scm_init_sort (void);
#endif /* SCM_SORT_H */