This file is indexed.

/usr/include/odil/odil.h is in libodil0-dev 0.7.3-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
#pragma once

#ifdef WIN32
#  define EXPORT_DYNAMIC_LIBRARY __declspec(dllexport)
#  define IMPORT_DYNAMIC_LIBRARY __declspec(dllimport)
#else // WIN32
#  define EXPORT_DYNAMIC_LIBRARY
#  define IMPORT_DYNAMIC_LIBRARY
#endif // WIN32

#ifdef BUILDING_ODIL
#  define ODIL_API EXPORT_DYNAMIC_LIBRARY
#else // BUILDING_ODIL
#  define ODIL_API IMPORT_DYNAMIC_LIBRARY
#endif // BUILDING_ODIL