This file is indexed.

/usr/lib/gcc/x86_64-linux-gnu/6/include/d/core/sys/linux/time.d is in libgphobos-6-dev 6.4.0-17ubuntu1.

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
//Written in the D programming language

/++
    D header file for Linux extensions to POSIX's time.h.

    Copyright: Copyright 2014
    License:   $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
    Authors:   Jonathan M Davis
 +/
module core.sys.linux.time;

public import core.sys.posix.time;

version(linux):

enum CLOCK_MONOTONIC_RAW      = 4;
enum CLOCK_REALTIME_COARSE    = 5;
enum CLOCK_MONOTONIC_COARSE   = 6;
enum CLOCK_BOOTTIME           = 7;
enum CLOCK_REALTIME_ALARM     = 8;
enum CLOCK_BOOTTIME_ALARM     = 9;
enum CLOCK_SGI_CYCLE          = 10;
enum CLOCK_TAI                = 11;