This file is indexed.

/usr/include/gmerlin/bg_version.h is in libgmerlin-dev 1.2.0~dfsg+1-5.

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

#define BG_VERSION "1.2.0"

#define BG_VERSION_MAJOR 1
#define BG_VERSION_MINOR 2
#define BG_VERSION_MICRO 0

#define BG_MAKE_BUILD(a,b,c) ((a << 16) + (b << 8) + c)

#define BG_BUILD \
BG_MAKE_BUILD(BG_VERSION_MAJOR, \
                BG_VERSION_MINOR, \
                BG_VERSION_MICRO)

#endif // __BG_VERSION_H_