This file is indexed.

/usr/share/common-lisp/source/cl-acl-compat/sbcl/acl-sys.lisp is in cl-acl-compat 1.2.42+cvs.2010.02.08-dfsg-1.2.

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
(in-package :acl-compat.system)

(defun command-line-arguments ()
  sb-ext:*posix-argv*)

(defun command-line-argument (n)
  (nth n sb-ext:*posix-argv*))

(defun reap-os-subprocess (&key (wait nil))
  (declare (ignore wait))
  nil)