This file is indexed.

/usr/include/litl_config.h is in liblitl-dev 0.1.9-2.

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 LITL_CONFIG_H
#define LITL_CONFIG_H


#define USE_GETTID 0


#define FORCE_32BIT 0

#if FORCE_32_BIT
/* compile for 32bit architecture */
#define HAVE_32BIT 1

#else  /* FORCE_32_BIT */
/* detect 32/64 bit architecture */

#ifndef SIZEOF_SIZE_T
#define SIZEOF_SIZE_T 8
#endif

#if (SIZEOF_SIZE_T == 4)
/* 32bit arch */
#define HAVE_32BIT 1
#else
/* 64bit arch */
#define HAVE_32BIT 0
#endif

#endif

#define CLOCK_GETTIME_AVAIL 1

#endif	/* LITL_CONFIG_H */