This file is indexed.

/usr/include/NTL/new.h is in libntl-dev 6.2.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
19
20
21
22
23
#ifndef NTL_new__H
#define NTL_new__H

#include <NTL/config.h>

#if (defined(NTL_STD_CXX) || defined(NTL_PSTD_NTN))

// We use <new> and std::nothrow, even if neither NTL_STD_CXX nor  
// NTL_PSTD_NHF are set.  This appears to be somewhat more compatible
// with current compilers.

#include <new>

#define NTL_NEW_OP new (std::nothrow)


#else

#define NTL_NEW_OP new

#endif

#endif