This file is indexed.

/usr/lib/petscdir/3.7.5/x86_64-linux-gnu-real-debug/include/petsc/finclude/petscdm.h is in libpetsc3.7.5-dbg 3.7.5+dfsg1-4+b1.

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
13
14
15
16
17
18
19
!
!  Include file for Fortran use of the DM package in PETSc
!
#include "petsc/finclude/petscdmdef.h"

!
!  Types of periodicity
!
      PetscEnum DM_BOUNDARY_NONE
      PetscEnum DM_BOUNDARY_GHOSTED
      PetscEnum DM_BOUNDARY_MIRROR
      PetscEnum DM_BOUNDARY_PERIODIC
      PetscEnum DM_BOUNDARY_TWIST

      parameter (DM_BOUNDARY_NONE = 0)
      parameter (DM_BOUNDARY_GHOSTED = 1)
      parameter (DM_BOUNDARY_MIRROR = 2)
      parameter (DM_BOUNDARY_PERIODIC = 3)
      parameter (DM_BOUNDARY_TWIST = 4)