This file is indexed.

/usr/include/measurement_kit/common/version.h is in libmeasurement-kit-dev 0.7.1-2build1.

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
26
// Part of measurement-kit <https://measurement-kit.github.io/>.
// Measurement-kit is free software. See AUTHORS and LICENSE for more
// information on the copying conditions.
#ifndef MEASUREMENT_KIT_COMMON_VERSION_HPP
#define MEASUREMENT_KIT_COMMON_VERSION_HPP

// File generated by `./autogen.sh` containing the exact version
#include <measurement_kit/common/git_version.hpp>

// Note: we use semantic versioning (see: http://semver.org/)
#define MK_VERSION "0.7.1"
#define MEASUREMENT_KIT_VERSION MK_VERSION /* Backward compatibility */

#ifdef __cplusplus
extern "C" {
#endif

const char *mk_version(void);
const char *mk_version_full(void);
const char *mk_openssl_version(void);
const char *mk_libevent_version(void);

#ifdef __cplusplus
} // namespace mk
#endif
#endif