This file is indexed.

/usr/include/apiextractor/apiextractormacros.h is in libapiextractor-dev 0.10.10-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
#ifndef APIEXTRACTORMACROS_H
#define APIEXTRACTORMACROS_H


// APIEXTRACTOR_API is used for the public API symbols.
#if defined _WIN32
    #if APIEXTRACTOR_EXPORTS
        #define APIEXTRACTOR_API __declspec(dllexport)
    #else
        #define APIEXTRACTOR_API
    #endif
    #define APIEXTRACTOR_DEPRECATED(func) __declspec(deprecated) func
#elif __GNUC__ >= 4
    #define APIEXTRACTOR_API __attribute__ ((visibility("default")))
    #define APIEXTRACTOR_DEPRECATED(func) func __attribute__ ((deprecated))
#endif

#ifndef APIEXTRACTOR_API
    #define APIEXTRACTOR_API
    #define APIEXTRACTOR_DEPRECATED(func) func
#endif

#endif