This file is indexed.

/usr/include/interpolation/memreq.h is in libemos-dev 000392+dfsg.1-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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
C
C Copyright 1981-2012 ECMWF.
C
C This software is licensed under the terms of the Apache Licence 
C Version 2.0 which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
C
C In applying this licence, ECMWF does not waive the privileges and immunities 
C granted to it by virtue of its status as an intergovernmental organisation 
C nor does it submit to any jurisdiction.
C
C**** "memreq.h"
C
C     PURPOSE
C     _______
C
C     This file contains the memory request definition variables.
C
C     INTERFACE
C     _________
C
C     #include "memreq.h"
C
C     Common block usage
C     __________________
C
C     MEMORY
C
C     MADDR        - The base addresses of the currently allocated
C                    memory segments.
C     MREQUEST     - The sizes of the current memory requests.
C
C     METHOD
C     ______
C
C     NONE
C
C     REFERENCE
C     _________
C
C     NONE
C
C     COMMENTS
C     ________
C
C     MREQUEST and MADDR are arrays to allow control of different
C     memory requests at different levels of the interpolation
C     software.
C
C     Contains section 1
C
C     AUTHOR
C     ______
C
C     K. Fielding      *ECMWF*      Jan 1994
C
C     MODIFICATIONS
C     _____________
C
C     NONE
C
C     _______________________________________________________
C
C
C*    Section 1. Input field description
C     _______________________________________________________
C
C     MREQUEST - The size of the current memory request.
C     MADDR    - The base address for the current memory allocation.
C
#ifdef POINTER_64
      INTEGER*8 MADDR(JPLEVEL)
#else
      INTEGER MADDR(JPLEVEL)
#endif
      INTEGER MREQUEST(JPLEVEL)
C
      COMMON /MEMORY/ MREQUEST, MADDR
C
      SAVE /MEMORY/