-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathqueues.asd
27 lines (23 loc) · 1009 Bytes
/
queues.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;;; **************************************************************************
;;;; **************************************************************************
;;;; *
;;;; * A package of queue data structures
;;;; * by Eric O'Connor
;;;; *
;;;; **************************************************************************
;;;; **************************************************************************
(in-package :cl-user)
(load (merge-pathnames
(make-pathname :name "asdf-header"
:type "lisp")
*load-truename*))
(in-package :queues-system)
;;; ------------------------------------------------------------------
(quick-defsystem :name queues
:desc "A queue interface -- used to create and
manipulate queue structures from simple-queue, priority-queue,
or their concurrent versions (cqueue)."
:files (interface))
;;; ==================================================================
;;; EOF
;;; ==================================================================