This file is indexed.

/usr/src/WrapITK/Tcl/itkTclModules.h.in is in libinsighttoolkit3-dev 3.20.1+git20120521-6build1.

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
#ifndef _itkTclModules_h
#define _itkTclModules_h

#ifndef ITK_TCL_NO_TK
#  include <tk.h>
#else
#  include <tcl.h>
#endif

typedef int (*InitFunctionType)(Tcl_Interp*);

extern "C"
{
@CONFIG_MODULE_INIT_DECLARATIONS@
}

static const unsigned int NumITKModules = @CONFIG_MODULE_COUNT@;
static const InitFunctionType ModuleInitializers[@CONFIG_MODULE_COUNT@] = {
@CONFIG_MODULE_INIT_ARRAY_INITIALIZER@
};

#endif