This file is indexed.

/usr/share/doc/pbuilder/examples/pbuilder-test/002_sample.c is in pbuilder 0.208ubuntu1.

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
/* 
   This is a file used by 002_libfile example.

   test code to test that libecasoundc can be compiled
 */
#include <stdio.h>
#include <ecasoundc.h>

int main()
{
  printf("hello world\n");
  eci_init();
  eci_command("engine-status");
  printf("%s\n", eci_last_string());
  eci_cleanup();
  return 0;
}