This file is indexed.

/usr/include/typesf2c.h is in libglobalarrays-dev 5.4~beta~r10636+dfsg-5.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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef TYPESF2C_H_
#define TYPESF2C_H_

#if defined(WIN32) &&!defined(__MINGW32__)
#   define FATR __stdcall
#else
#   define FATR 
#endif

typedef long Integer;
typedef float Real;
typedef double DoublePrecision;

typedef Integer logical;
typedef Integer Logical;

typedef struct {
    DoublePrecision real;
    DoublePrecision imag;
} DoubleComplex;

typedef struct {
    Real real;
    Real imag;
} SingleComplex;

typedef long intp;

#endif /* TYPESF2C_H_ */