This file is indexed.

/usr/include/ETL/etl_config.h is in etl-dev 0.04.17-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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef __ETL_CONFIG_H
#define __ETL_CONFIG_H

#include "etl_profile.h"
#include <utility>

#ifndef ETL_NAMESPACE
# define ETL_NAMESPACE 			etl
#endif

#ifdef	WIN32
#define ETL_DIRECTORY_SEPARATOR		'\\'
#else
#define ETL_DIRECTORY_SEPARATOR		'/'
#endif

#ifndef ETL_FLAG_NONAMESPACE
# define _ETL					ETL_NAMESPACE
# define _ETL_BEGIN_NAMESPACE	namespace _ETL {
# define _ETL_END_NAMESPACE		};
# define _STD_BEGIN_NAMESPACE	namespace std {
# define _STD_END_NAMESPACE		};
#else
# define _ETL
# define _ETL_BEGIN_NAMESPACE
# define _ETL_END_NAMESPACE
# define _STD_BEGIN_NAMESPACE
# define _STD_END_NAMESPACE
#endif

#define _ETL_BEGIN_CDECLS		extern "C" {
#define _ETL_END_CDECLS			}

#ifdef _REENTRANT
#define ETL_REENTRANT	1
#endif

/* If __FUNC__ is not defined,
** try to define it. If we cannot,
** then just leave it undefined.
*/
#ifndef __FUNC__
/*
 * # if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4)
#   define __FUNC__	__PRETTY_FUNCTION__
# else
#  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
#   define __FUNC__	__func__
#  endif
# endif
*/
#endif

#ifdef __GNUG__
#define ETL_DEPRECATED_FUNCTION		__attribute__ ((deprecated))
#else
#define ETL_DEPRECATED_FUNCTION
#endif

#ifndef NULL
#define NULL	0
#endif

#endif