/usr/share/common-lisp/source/asdf-finalizers/pkgdcl.lisp is in cl-asdf-finalizers 20140826-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 13 14 15 16 17 18 19 20 21 22 23 24 25 | #+xcvb (module ())
(in-package :cl)
(defpackage :asdf-finalizers
(:use :cl :asdf)
(:export
#:*warn-when-finalizers-off*
#:eval-at-toplevel
#:final-forms
#:register-finalizer
#:register-final-form
#:no-finalizer-left-behind-p
#:assert-no-finalizer-left-behind
#:compile-check-finalizers
#:check-finalizers-around-compile
#:call-with-finalizers
#:with-finalizers
#:using-finalizers-p
#:finalizers-off
#:finalizers-off-error
#:finalizers-off-simple-error
#:finalizers-off-warning
#:finalizers-off-simple-warning
))
|