This file is indexed.

/usr/share/gccxml-0.9/GCC/2.95/iomanip is in gccxml 0.9.0+cvs20111013-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
19
20
#ifndef GCCXML_IOMANIP
#define GCCXML_IOMANIP

#include_next <iomanip>

// GCC 2.95 does not conform.
namespace std
{
  using ::dec;
  using ::hex;
  using ::oct;
  using ::setw;
  using ::setfill;
  using ::setprecision;
  using ::setbase;
  using ::setiosflags;
  using ::resetiosflags;
}

#endif