This file is indexed.

/usr/include/trilinos/RTOp_Config.h is in libtrilinos-rtop-dev 12.10.1-3.

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
#ifndef RTOP_CONFIG_H
#define RTOP_CONFIG_H

#define HAVE_MPI

/* #undef HAVE_RTOP_DEBUG */

#define HAVE_RTOP_EXPLICIT_INSTANTIATION

#ifndef RTOP_DEPRECATED
#  if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
#    define RTOP_DEPRECATED  __attribute__((__deprecated__))
#  else
#    define RTOP_DEPRECATED
#  endif
#endif

#ifndef RTOP_DEPRECATED_MSG
#  if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
#    define RTOP_DEPRECATED_MSG(MSG)  __attribute__((__deprecated__ (#MSG) ))
#  elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
#    define RTOP_DEPRECATED_MSG(MSG)  __attribute__((__deprecated__))
#  else
#    define RTOP_DEPRECATED_MSG(MSG)
#  endif
#endif


#endif