Previously missed whitespace canonicalizations
[sbcl.git] / contrib / sb-queue / package.lisp
blob314af994fe4b630d280e2d1ba350182638ab7d06
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3 ;;;;
4 ;;;; This software is derived from the CMU CL system, which was written at
5 ;;;; Carnegie Mellon University and released into the public domain. The
6 ;;;; software is in the public domain and is provided with absolutely no
7 ;;;; warranty. See the COPYING and CREDITS files for more information.
9 ;;; SB-QUEUE has been slurped in SB-CONCURRENCY.
11 ;;; Here we just provide a reexporting stub for backwards
12 ;;; compatibility.
14 (defpackage :sb-queue
15 (:use :cl :sb-concurrency)
16 (:export
17 "DEQUEUE"
18 "ENQUEUE"
19 "LIST-QUEUE-CONTENTS"
20 "MAKE-QUEUE"
21 "QUEUE"
22 "QUEUE-COUNT"
23 "QUEUE-EMPTY-P"
24 "QUEUE-NAME"
25 "QUEUEP"))