1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

Keep the weak pair API internal.

* libguile/weaks.h (scm_weak_car_pair, scm_weak_cdr_pair,
  scm_doubly_weak_pair): Make them internal.
This commit is contained in:
Ludovic Courtès 2009-09-15 23:12:39 +02:00
parent a0faf7ddf9
commit 238f9a4f72

View file

@ -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) \