From 56a68067d4867d671e349cf4c74dcc847191036a Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Fri, 21 Apr 2000 23:14:19 +0000 Subject: [PATCH] * weaks.h (scm_weak_vectors, scm_weaks_prehistory): Added declarations. --- libguile/weaks.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libguile/weaks.h b/libguile/weaks.h index 92a17c052..9f662d2c6 100644 --- a/libguile/weaks.h +++ b/libguile/weaks.h @@ -2,7 +2,7 @@ #ifndef WEAKSH #define WEAKSH -/* Copyright (C) 1995,1996 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996, 2000 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -59,6 +59,8 @@ #define SCM_IS_WHVEC_ANY(X) (SCM_UNPACK (SCM_VELTS(X)[-1]) != 0) #define SCM_WVECT_GC_CHAIN(X) (SCM_VELTS(X)[-2]) +extern SCM scm_weak_vectors; + extern SCM scm_make_weak_vector (SCM k, SCM fill); @@ -70,6 +72,7 @@ extern SCM scm_make_doubly_weak_hash_table (SCM k); extern SCM scm_weak_key_hash_table_p (SCM x); extern SCM scm_weak_value_hash_table_p (SCM x); extern SCM scm_doubly_weak_hash_table_p (SCM x); +extern void scm_weaks_prehistory (void); extern void scm_init_weaks (void); #endif /* WEAKSH */