This file is indexed.

/usr/include/lam/FREQF.h is in lam4-dev 7.1.4-3.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
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
80
81
82
83
/*
 * Copyright (c) 2001-2002 The Trustees of Indiana University.  
 *                         All rights reserved.
 * Copyright (c) 1998-2001 University of Notre Dame. 
 *                         All rights reserved.
 * Copyright (c) 1994-1998 The Ohio State University.  
 *                         All rights reserved.
 * 
 * This file is part of the LAM/MPI software package.  For license
 * information, see the LICENSE file in the top level directory of the
 * LAM/MPI source distribution.
 * 
 * $HEADER$
 * 
 *      LAM	
 *	Copyright 1995 The Ohio State University
 *	GDB
 *
 *	$Log: FREQF.h,v $
 *	Revision 6.2  2002/10/09 20:57:21  brbarret
 *	* Update tree to match the latest, greatest, license for LAM/MPI.  And this
 *	  one is even done properly :)
 *
 *	Revision 6.1  1999/09/02 01:34:37  jsquyres
 *	Changes to make LAM NT/Cygwin friendly
 *	- Renamed MPISYS.h, NET.h, and FREQ.h to be MPISYSF.h, NETF.h, and FREQF.h,
 *	  respectively, because NT filesystems do not have case-sensitive names,
 *	  and we already have <mpisys.h>, <net.h>, and <freq.h>.
 *	
 *	Revision 6.2  1999/05/18 22:12:58  kmeyer1
 * Copyright (c) 2001-2002 The Trustees of Indiana University.  
 *                         All rights reserved.
 * Copyright (c) 1998-2001 University of Notre Dame. 
 *                         All rights reserved.
 * Copyright (c) 1994-1998 The Ohio State University.  
 *                         All rights reserved.
 * 
 * This file is part of the LAM/MPI software package.  For license
 * information, see the LICENSE file in the top level directory of the
 * LAM/MPI source distribution.
 * 
 * $HEADER$
 *	
 *	Revision 6.1  1996/11/23 21:54:31  nevin
 *	Ohio Release
 *	
 * Revision 6.0  96/02/29  13:52:52  gdburns
 * Ohio Release
 * 
 * Revision 5.2.1.1  95/10/18  15:44:17  gdburns
 * Remove Cubix and backwards compatibility.
 * 
 * Revision 5.2  94/08/22  14:00:19  gdburns
 * Ohio Release
 * 
 * Revision 5.1  94/05/18  12:44:10  gdburns
 * Ohio Release
 * 
 * Revision 2.3  94/04/22  12:48:34  gdburns
 * Ohio Release
 * 
 *	Function:	- open flags, suitable for inclusion into F77 programs
 */

#ifndef _FREQF
#define _FREQF

#define	LAM_O_RDONLY		(1)
#define	LAM_O_WRONLY		(2)
#define	LAM_O_RDWR		(4)
#define	LAM_O_APPEND		(16)
#define	LAM_O_CREAT		(32)
#define	LAM_O_TRUNC		(64)
#define	LAM_O_EXCL		(128)
#define	LAM_O_LOCK		(65536)
#define	LAM_O_REUSE		(131072)
#define	LAM_O_DRAW		(0)
#define	LAM_O_DINT4		(2097152)
#define	LAM_O_DFLT4		(4194304)
#define	LAM_O_DFLT8		(8388608)
#define	LAM_O_1WAY		(16777216)

#endif /* _FREQF */