This file is indexed.

/usr/lib/gcc-cross/arm-linux-gnueabi/5/include/d/core/stdc/float_.d is in libphobos-5-dev-armel-cross 5.3.1-14ubuntu2cross1.

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
/**
 * D header file for C99.
 *
 * Copyright: Copyright Sean Kelly 2005 - 2009.
 * License: Distributed under the
 *      $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
 *    (See accompanying file LICENSE)
 * Authors:   Sean Kelly
 * Source:    $(DRUNTIMESRC core/stdc/_float_.d)
 * Standards: ISO/IEC 9899:1999 (E)
 */

module core.stdc.float_;

extern (C):
@trusted: // Constants only.
nothrow:
@nogc:

enum FLT_ROUNDS                 = 1;
enum FLT_EVAL_METHOD    = 2;
enum FLT_RADIX                  = 2;

enum DECIMAL_DIG                = real.dig;
enum FLT_DIG                    = float.dig;
enum DBL_DIG                    = double.dig;
enum LDBL_DIG                   = real.dig;

enum FLT_MANT_DIG               = float.mant_dig;
enum DBL_MANT_DIG               = double.mant_dig;
enum LDBL_MANT_DIG              = real.mant_dig;

enum FLT_MIN                    = float.min_normal;
enum DBL_MIN                    = double.min_normal;
enum LDBL_MIN                   = real.min_normal;

enum FLT_MAX                    = float.max;
enum DBL_MAX                    = double.max;
enum LDBL_MAX                   = real.max;

enum FLT_EPSILON                = float.epsilon;
enum DBL_EPSILON                = double.epsilon;
enum LDBL_EPSILON               = real.epsilon;

enum FLT_MIN_EXP                = float.min_exp;
enum DBL_MIN_EXP                = double.min_exp;
enum LDBL_MIN_EXP               = real.min_exp;

enum FLT_MAX_EXP                = float.max_exp;
enum DBL_MAX_EXP                = double.max_exp;
enum LDBL_MAX_EXP               = real.max_exp;

enum FLT_MIN_10_EXP             = float.min_10_exp;
enum DBL_MIN_10_EXP             = double.min_10_exp;
enum LDBL_MIN_10_EXP    = real.min_10_exp;

enum FLT_MAX_10_EXP             = float.max_10_exp;
enum DBL_MAX_10_EXP             = double.max_10_exp;
enum LDBL_MAX_10_EXP    = real.max_10_exp;