This file is indexed.

/usr/include/z3_macros.h is in libz3-dev 4.4.0-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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*++
Copyright (c) 2015 Microsoft Corporation

--*/

#ifndef __in
#define __in
#endif

#ifndef __out
#define __out
#endif

#ifndef __out_opt
#define __out_opt __out
#endif

#ifndef __ecount
#define __ecount(num_args)
#endif 

#ifndef __in_ecount
#define __in_ecount(num_args) __in __ecount(num_args)
#endif 

#ifndef __out_ecount
#define __out_ecount(num_args) __out __ecount(num_args)
#endif 

#ifndef __inout_ecount
#define __inout_ecount(num_args) __in __out __ecount(num_args)
#endif 

#ifndef __inout
#define __inout __in __out
#endif

#ifndef Z3_bool_opt
#define Z3_bool_opt Z3_bool
#endif

#ifndef Z3_API
# ifdef __GNUC__
#  define Z3_API __attribute__ ((visibility ("default")))
# else
#  define Z3_API
# endif
#endif 

#ifndef DEFINE_TYPE
#define DEFINE_TYPE(T) typedef struct _ ## T *T
#endif

#ifndef DEFINE_VOID
#define DEFINE_VOID(T) typedef void* T
#endif

#ifndef BEGIN_MLAPI_EXCLUDE
#define BEGIN_MLAPI_EXCLUDE
#endif
#ifndef END_MLAPI_EXCLUDE
#define END_MLAPI_EXCLUDE
#endif