Skip to content

Instantly share code, notes, and snippets.

@AkashaP
AkashaP / mqueue.asd
Last active April 13, 2022 16:12 — forked from artob/mqueue.asd
POSIX message queues for Common Lisp.
;; This is free and unencumbered software released into the public domain.
(asdf:defsystem :mqueue
:name "mqueue"
:description "POSIX message queues for Common Lisp."
:version "0.0.0"
:author "Arto Bendiken <arto@datagraph.org> modified by Akasha"
:depends-on (:cffi)
:serial t
:components ((:file "mqueue")))