This file is indexed.

/usr/include/python2.7/pysparse/bicgstab.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
18
#ifndef BICGSTAB_H
#define BICGSTAB_H

#include "Python.h"

int Itsolvers_bicgstab_kernel(int n, 
			      double *x, 
			      double *b,
			      double tol, 
			      int maxit,
			      int clvl,
			      int *iter, 
			      double *relres, 
			      int *flag,
			      double *work,
			      PyObject *mat_obj,
			      PyObject *prec_obj);
#endif