This file is indexed.

/usr/lib/bcc/include/linuxmt/types.h is in elks-libc 0.16.17-3.3.

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
#ifndef __LINUXMT_TYPES_H
#define __LINUXMT_TYPES_H

#include <asm/types.h>

typedef __u32 off_t;
typedef __u16 pid_t;
typedef __u16 uid_t;
typedef __u16 gid_t;
typedef __u32 time_t;
typedef __u16 umode_t;
typedef __u16 nlink_t;
typedef __u16 mode_t;
typedef __u32 loff_t;
typedef __u32 speed_t;
typedef __u16 size_t;

typedef __u16 dev_t;
typedef __uint ino_t;
typedef __u32 tcflag_t;
typedef __u8  cc_t;

typedef int   ptrdiff_t;

#endif