This file is indexed.

/usr/lib/help/sys_make-input-port 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
11
12
S9 EXT  (sys:make-input-port integer)   ==>  input-port
        (sys:make-output-port integer)  ==>  output-port

Create a new input or output port and assign it to the Unix file
descriptor specified in the INTEGER argument. The file descriptor
must be open and match the type of the port to be created, i.e.
a file descriptor passed to SYS:MAKE-INPUT-PORT must be opoen for
reading and a descriptor passed to SYS:MAKE-OUTPUT-PORT must be
open for writing.

(sys:make-input-port 0)   ==>  #<input port>
(sys:make-output-port 2)  ==>  #<output port>