/usr/share/common-lisp/source/db3/package.lisp is in cl-db3 20150302-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | ;;;; package.lisp
(defpackage #:db3
(:use #:cl)
(:export #:*external-format*
#:db3 ; the main class
#:load-header
#:record-count
#:load-record
#:write-record
#:dump-db3
#:sample-db3))
|