This file is indexed.

/usr/include/JAGS/util/nainf.h is in jags 3.4.0-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 NA_INF_H_
#define NA_INF_H_

#ifdef __cplusplus
extern "C" {
#endif

  extern const double JAGS_NA;
  extern const double JAGS_NAN;
  extern const double JAGS_POSINF;
  extern const double JAGS_NEGINF;

  int jags_finite(double);
  int jags_isnan(double);

#ifdef __cplusplus
}
#endif

#endif