This file is indexed.

/usr/include/lorene/C++/Include/headcpp.h is in liblorene-dev 0.0.0~cvs20161116+dfsg-1ubuntu4.

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
27
28
29
30
31
#include <iomanip>
#include <iostream>
#include <fstream>
#include <typeinfo>
#include <string>
#include <cmath>

using namespace std ;

namespace Lorene {

  using std::cos ;
  using std::sin ;
  using std::sqrt ;
  using std::pow ;

  using std::log10 ;
  using std::log ;
  using std::exp ;
  using std::acos ;
  using std::asin ;

  using std::abs ;
  using std::fabs ;
  using std::max ;
  using std::min ;

  using std::tan ;
  using std::atan ;

}