This file is indexed.

/usr/include/birnet/birnetconfig.h is in libbse-dev 0.7.8-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
/* Generated data from ../config.status (by make birnetconfig.h) */

/* select programming environment */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif

/* standard C code wrappers */
#ifdef  __cplusplus
#define BIRNET_EXTERN_C_BEGIN()	extern "C" {
#define BIRNET_EXTERN_C_END()		}
#else
#define BIRNET_EXTERN_C_BEGIN()
#define BIRNET_EXTERN_C_END()
#endif

/* birnet version */
#define BIRNET_MAJOR_VERSION		(0)
#define BIRNET_MINOR_VERSION		(0)
#define BIRNET_MICRO_VERSION		(1)
#define BIRNET_BINARY_AGE		(0)
#define BIRNET_INTERFACE_AGE		(0)

/* log domain */
#ifndef BIRNET_LOG_DOMAIN
#ifdef  G_LOG_DOMAIN
#define BIRNET_LOG_DOMAIN  G_LOG_DOMAIN
#else
#define BIRNET_LOG_DOMAIN  ((const char*) 0)
#endif
#endif

/* version checks */
#define BIRNET_CHECK_VERSION(major,minor,micro)	\
  (BIRNET_MAJOR_VERSION > (major) || \
   (BIRNET_MAJOR_VERSION == (major) && BIRNET_MINOR_VERSION > (minor)) || \
   (BIRNET_MAJOR_VERSION == (major) && BIRNET_MINOR_VERSION == (minor) && \
    BIRNET_MICRO_VERSION >= (micro)))

/* configure results */
#define BIRNET_OS_UNIX		(1) /* one of: WIN32 UNIX */
#define BIRNET_SIZEOF_POINTER		(4)
#define BIRNET_SIZEOF_LONG		(4)
#define BIRNET_SIZEOF_SYS_TYPESH_UINT	(4)
#define BIRNET_SIZEOF_PTH_MUTEX_T	(24)
#define BIRNET_SIZEOF_PTH_COND_T	(48)
#define BIRNET_HAVE_MUTEXATTR_SETTYPE	(1 && \
                                        BIRNET_SIZEOF_PTH_MUTEX_T && \
                                        BIRNET_SIZEOF_PTH_COND_T)
#define BIRNET_MEMORY_BARRIER_NEEDED   (0)

#define BIRNET_SYSVAL_POLLIN 		(1)
#define BIRNET_SYSVAL_POLLPRI		(2)
#define BIRNET_SYSVAL_POLLOUT		(4)
#define BIRNET_SYSVAL_POLLRDNORM	(64)
#define BIRNET_SYSVAL_POLLRDBAND 	(128)
#define BIRNET_SYSVAL_POLLWRNORM   	(256)
#define BIRNET_SYSVAL_POLLWRBAND	(512)
#define BIRNET_SYSVAL_POLLERR		(8)
#define BIRNET_SYSVAL_POLLHUP		(16)
#define BIRNET_SYSVAL_POLLNVAL		(32)

/* Generated data ends here */