This file is indexed.

/usr/include/cloog/isl/constraintset.h is in libcloog-isl-dev 0.18.2-1+b2.

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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef CLOOG_ISL_CONSTRAINTSET_H
#define CLOOG_ISL_CONSTRAINTSET_H

#include <cloog/isl/backend.h>

#if defined(__cplusplus)
extern "C" 
  {
#endif 

struct cloogconstraintset {
	int dummy;	/* Solaris cc doesn't like zero-sized structs */
};

struct cloogequalities {
	int			  n;
	unsigned		  total_dim;
	isl_constraint		**constraints;
	int			 *types;
};

struct cloogconstraint {
	int dummy;	/* Solaris cc doesn't like zero-sized structs */
};

CloogConstraintSet *cloog_constraint_set_from_isl_basic_set(struct isl_basic_set *bset);
CloogConstraint *cloog_constraint_from_isl_constraint(struct isl_constraint *constraint);
isl_constraint *cloog_constraint_to_isl(CloogConstraint *constraint);

#if defined(__cplusplus)
  }
#endif 
#endif /* define _H */