summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-15 23:12:39 +0200
committerLudovic Courtès <ludo@gnu.org>2009-09-15 23:12:39 +0200
commit238f9a4f72a1537d8be9a21c1140a368a118f85b (patch)
treea6d2ea929c450f341811c66fa128390aa30db734
parenta0faf7ddf9e260916aa1e64cc2ec48ac6925b2d6 (diff)
downloadguile-238f9a4f72a1537d8be9a21c1140a368a118f85b.tar.gz
Keep the weak pair API internal.
* libguile/weaks.h (scm_weak_car_pair, scm_weak_cdr_pair, scm_doubly_weak_pair): Make them internal.
-rw-r--r--libguile/weaks.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/weaks.h b/libguile/weaks.h
index 23b707248..eecc6184e 100644
--- a/libguile/weaks.h
+++ b/libguile/weaks.h
@@ -55,9 +55,9 @@
/* Weak pairs. */
-SCM_API SCM scm_weak_car_pair (SCM car, SCM cdr);
-SCM_API SCM scm_weak_cdr_pair (SCM car, SCM cdr);
-SCM_API SCM scm_doubly_weak_pair (SCM car, SCM cdr);
+SCM_INTERNAL SCM scm_weak_car_pair (SCM car, SCM cdr);
+SCM_INTERNAL SCM scm_weak_cdr_pair (SCM car, SCM cdr);
+SCM_INTERNAL SCM scm_doubly_weak_pair (SCM car, SCM cdr);
/* Testing the weak component(s) of a cell for reachability. */
#define SCM_WEAK_PAIR_WORD_DELETED_P(_cell, _word) \