This file is indexed.

/usr/include/bglibs/uint16.h is in libbg-dev 2.04+dfsg-1.

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

#include "sysdeps.h"
#include "uintnn.h"
__UINTNN_DECL(16,2)
#define uint16_get uint16_get_lsb
#define uint16_pack uint16_pack_lsb
#define uint16_unpack uint16_unpack_lsb

#ifdef ENDIAN_LSB
#define uint16_get_native uint16_get_lsb
#define uint16_pack_native uint16_pack_lsb
#define uint16_unpack_native uint16_unpack_lsb
#else
#define uint16_get_native uint16_get_msb
#define uint16_pack_native uint16_pack_msb
#define uint16_unpack_native uint16_unpack_msb
#endif

#endif