This file is indexed.

/usr/share/doc/gprbuild-doc/examples/extended_projects/new_util_src/c_lib.ads is in gprbuild-doc 2014dfsg-3.

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
package C_Lib is
   procedure Do_Something;
   pragma Import (C, Do_Something);
   procedure Do_Something_Else;
   pragma Import (C, Do_Something_Else);
end C_Lib;