This file is indexed.

/usr/include/ITK-4.9/v3p_netlib.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.

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

/* Include the basic f2c interface.  */
#include "v3p_f2c.h"

/* Mangle the netlib symbols and types to have a v3p_netlib prefix.  */
#include "v3p_netlib_mangle.h"

/* Enforce const-correctness only outside v3p_netlib sources.  */
#ifdef V3P_NETLIB_SRC
# define v3p_netlib_const
#else
# define v3p_netlib_const const
#endif

/* Modify the interface for C++.  */
#ifdef __cplusplus
# undef complex
# include <vcl_complex.h>
# define v3p_netlib_complex vcl_complex<float>
# define v3p_netlib_doublecomplex vcl_complex<double>
#endif

/* Include the netlib interface.  */
#ifdef __cplusplus
extern "C" {
#endif
extern void v3p_netlib_initialize();
#include "v3p_netlib_prototypes.h"
#ifdef __cplusplus
}
#endif

/* Cleanup the namespace if not inside a v3p_netlib source.  */
#ifndef V3P_NETLIB_SRC
# include "v3p_netlib_unmangle.h"
#endif

/* Automatically initialize the netlib library for C++ clients.  */
#if defined(__cplusplus) && !defined(V3P_NETLIB_SRC)
struct v3p_netlib_initializer
{
  v3p_netlib_initializer() { v3p_netlib_initialize(); }
};
static v3p_netlib_initializer v3p_netlib_initializer_instance;
#endif

#endif