This file is indexed.

/usr/include/isl/deprecated/point_int.h is in libisl-dev 0.16.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
19
20
#ifndef ISL_DEPRECATED_POINT_INT_H
#define ISL_DEPRECATED_POINT_INT_H

#include <isl/deprecated/int.h>
#include <isl/point.h>

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

int isl_point_get_coordinate(__isl_keep isl_point *pnt,
	enum isl_dim_type type, int pos, isl_int *v);
__isl_give isl_point *isl_point_set_coordinate(__isl_take isl_point *pnt,
	enum isl_dim_type type, int pos, isl_int v);

#if defined(__cplusplus)
}
#endif

#endif