This file is indexed.

/usr/share/picolisp/lib/math.l is in picolisp 3.1.5.2-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
12
# 26jun10abu
# (c) Software Lab. Alexander Burger

(and (=0 *Scl) (scl 6))                # Default scale 6

(setq                                  # Global constants
   pi    3.1415926535897932
   pi/2  1.5707963267948966 )

(load (if (== 64 64) "@lib/math64.l" "@lib/math32.l"))

# vi:et:ts=3:sw=3