This file is indexed.

/usr/include/falcon/config.h is in falconpl-dev 0.9.6.9-git20120606-2.1+b1.

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
/*
   FALCON - The Falcon Programming Language.
   FILE: config.h

   This file is partially generated before compile time
   by the configuration process, or manually finetuned.
   -------------------------------------------------------------------
   Author: Giancarlo Niccolai
   Begin: gio giu 7 2007

   -------------------------------------------------------------------
   (C) Copyright 2004: the FALCON developers (see list in AUTHORS file)

   See LICENSE file for licensing details.
*/

/** \file
   Falcon compile time configuration file.
   This file is partially generated before compile time by the configuration process,
   or manually finetuned.
*/

#ifndef FLC_CONFIG_H
#define FLC_CONFIG_H

//============================================
// Version informations
//
#define FALCON_VERSION_MAJOR 0
#define FALCON_VERSION_MINOR 9
#define FALCON_VERSION_REVISION 6
#define FALCON_VERSION_PATCH 9

#define FALCON_VERSION_NUM          ( 0 <<24 | 9 <<16 | 6 << 8 | 9 )
#define FALCON_VERSION              "0.9.6.9"
#define FALCON_VERSION_NAME         "Chimera"

//============================================
// Version RCINFO
//

#define FALCON_VERSION_RCINFO 	    "0, 9, 6, 9"
#define FALCON_VERSION_RCINFO_N 	    0, 9, 6, 9

//============================================
// System informations
//

// Basic system. May be either
//   - FALCON_SYSTEM_UNIX
//   - FALCON_SYSTEM_WIN
//   - FALCON_SYSTEM_MAC

#define FALCON_SYSTEM_UNIX
/* #undef FALCON_SYSTEM_WIN */
/* #undef FALCON_SYSTEM_MAC */

#define FALCON_HOST_SYSTEM          "UNIX"
#define FALCON_LITTLE_ENDIAN        1

//============================================
// Config informations
//
#ifdef FALCON_SYSTEM_WIN
   #define FALCON_DEFAULT_BIN          "/usr\\bin"
   #define FALCON_DEFAULT_LIB          "/usr\\lib"
   #define FALCON_DEFAULT_CONFIG       "/usr\\etc"
   #define FALCON_DEFAULT_LOAD_PATH    ".;/usr\\lib/falcon"
#else
   #define FALCON_DEFAULT_BIN          "/usr/bin"
   #define FALCON_DEFAULT_LIB          "/usr/lib"
   #define FALCON_DEFAULT_CONFIG       "/etc"
   #define FALCON_DEFAULT_LOAD_PATH    ".;/usr/lib/falcon"
#endif

#endif

/* end of config.h */