This file is indexed.

/usr/include/vmmlib/lapack_types.hpp is in libvmmlib-dev 1.0-2.

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

#include "lapack_includes.hpp"


namespace vmml
{

namespace lapack
{

#ifdef __APPLE__

typedef __CLPK_integer  lapack_int;

#else

typedef integer         lapack_int;

#endif


} // namespace lapack


} // namespace vmml

#endif