This file is indexed.

/usr/include/trilinos/pamgen_code_types.h is in libtrilinos-pamgen-dev 12.12.1-5.

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
34
35
36
37
38
39
40
41
42
43
/* $Id$ */

/* note this header file must use C, not C++, syntax */

#ifndef code_typesH
#define code_typesH

#include <float.h> 
#include <limits.h>

/* typedefs to allow easy modification of word size for a particular
 * application or computer */

#define REAL_MAX   DBL_MAX
#define REAL_MIN   DBL_MIN
#define REAL_EPSILON DBL_EPSILON
/* These are useful if any of your variables will end up in the single precision exodus file and set to some max. */
#define FLOAT_MAX   FLT_MAX
#define FLOAT_MIN   FLT_MIN
#define FLOAT_EPSILON FLT_EPSILON

typedef unsigned int        uint;

#ifdef CRAY
typedef float                Real;
#elif defined MAC_SEMANTIC
typedef float                Real;
#else
typedef double                Real;
#endif

/* namespace macros to use */

/* this typedef is used to declare strings that can never be changed, e.g. 
 * message strings */

typedef const char *const        ConstString;

#ifndef NULL
#define NULL 0
#endif

#endif