This file is indexed.

/usr/lib/gcc-cross/arm-linux-gnueabi/5/include/d/core/sys/linux/errno.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
/**
 * D header file for GNU/Linux
 *
 * $(LINK2 http://sourceware.org/git/?p=glibc.git;a=blob;f=stdlib/errno.h, glibc stdlib/errno.h)
 */
module core.sys.linux.errno;

version (linux):
extern (C):
nothrow:

public import core.stdc.errno;
import core.sys.linux.config;

static if (__USE_GNU)
{
    extern __gshared char* program_invocation_name, program_invocation_short_name;
    alias error_t = int;
}