diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-09-15 23:12:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-09-15 23:12:39 +0200 |
commit | 238f9a4f72a1537d8be9a21c1140a368a118f85b (patch) | |
tree | a6d2ea929c450f341811c66fa128390aa30db734 | |
parent | a0faf7ddf9e260916aa1e64cc2ec48ac6925b2d6 (diff) | |
download | guile-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.h | 6 |
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) \ |