This file is indexed.

/var/lib/pcp/testsuite/src/int2pmid.c is in pcp-testsuite 4.0.1-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
/*
 * Copyright (c) 2017 Red Hat.
 *
 * Convert raw integers into dotted-form PMIDs.
 */
#include <pcp/pmapi.h>

int
main(int argc, char *argv[])
{
    pmID	pmid;

    while (optind < argc) {
	pmid = atoi(argv[optind++]);
	printf("%u = %s\n", pmid, pmIDStr(pmid));
    }
    return 0;
}