This file is indexed.

/usr/include/python2.7/pysparse/cgs.h is in python-sparse 1.1.1-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
13
14
15
16
17
#ifndef CGS_H
#define CGS_H

#include <Python.h>

int Itsolvers_cgs_kernel(int n, 
			 double *b, 
			 double *x, 
			 int maxit, 
			 double tol,
			 double *work,
			 int *iter,
			 double *res,
			 PyObject *mat_obj,
			 PyObject *prec_obj);

#endif