diff options
Diffstat (limited to 'module')
-rw-r--r-- | module/ice-9/weak-vector.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/module/ice-9/weak-vector.scm b/module/ice-9/weak-vector.scm index 31d79ec6f..0df8e1a45 100644 --- a/module/ice-9/weak-vector.scm +++ b/module/ice-9/weak-vector.scm @@ -1,6 +1,6 @@ ;;; installed-scm-file -;;;; Copyright (C) 2003, 2006, 2011 Free Software Foundation, Inc. +;;;; Copyright (C) 2003, 2006, 2011, 2014 Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public @@ -19,7 +19,12 @@ (define-module (ice-9 weak-vector) - #:export (make-weak-vector list->weak-vector weak-vector weak-vector?)) + #:export (make-weak-vector + list->weak-vector + weak-vector + weak-vector? + weak-vector-ref + weak-vector-set!)) (eval-when (load eval compile) (load-extension (string-append "libguile-" (effective-version)) |