This file is indexed.

/usr/lib/help/gcd is in scheme9 2013.11.26-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
R4RS 6.5.5  (gcd integer ...)  ==>  integer
            (lcm integer ...)  ==>  integer

These procedures return the greatest common divisor or least common
multiple of their arguments. The result is always non-negative.

(gcd 32 -36)  ==>  4
(gcd)         ==>  0
(lcm 32 -36)  ==>  288
(lcm)         ==>  1