This file is indexed.

/usr/share/doc/cfortran/examples/vv/vv_f.f is in cfortran 4.4-14.

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
C /* vv_f.f */                   /* anonymous ftp@zebra.desy.de */
C /* An example from cfortran.h package. Requires vv.c or .C    */
C /* Burkhard Burow  burow@desy.de                 1990 - 1996. */

      subroutine vv(d,f,i)
      implicit none
      double precision d(2,2)
      real             f(2,2)
      integer          i(2,2)
      call cvv(d,f,i)
      return
      end