This file is indexed.

/usr/include/freefem++/config-wrapper.h is in libfreefem++-dev 3.47+dfsg1-2build1.

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
// Include a platform-specific configuration file
// ----------------------------------------------

// $Id$

// This wrapper is necessary for platforms where the configure script
// does not run.

#ifndef CONFIG_WRAPPER_H
#define CONFIG_WRAPPER_H

#ifdef __MWERKS__
#include "config-macos9.h"
#else
#include <config.h>
#endif

#endif // CONFIG_WRAPPER_H