This file is indexed.

/usr/include/ITK-4.5/vnl/dll.h is in libinsighttoolkit4-dev 4.5.0-3.

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
// This is core/vnl/dll.h
#ifndef vnl_dll_h_
#define vnl_dll_h_

#include <vcl_compiler.h>

#define VNL_DLL_DATA

#if defined(VCL_WIN32) && !defined(BUILDING_VNL_DLL)

// if win32 and not building the DLL then you need a dllimport
// Only if you are building a DLL linked application.
# ifdef BUILD_DLL
#  undef VNL_DLL_DATA
#  define VNL_DLL_DATA _declspec(dllimport)
# endif // BUILD_DLL
#endif // VCL_WIN32 and !Building_*_dll

#endif // vnl_dll_h_