This file is indexed.

/usr/include/XdmfExport.h is in libxdmf-dev 2.1.dfsg.1-11+b2.

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 __xdmf_export_h
#define __xdmf_export_h

#include "XdmfConfig.h"

#if defined(_WIN32) && !defined(WIN32)
# define WIN32
#endif

#if defined(WIN32) && !defined(XDMFSTATIC)
#  if defined(Xdmf_EXPORTS)
#    define XDMF_EXPORT __declspec( dllexport ) 
#  else
#    define XDMF_EXPORT __declspec( dllimport ) 
#  endif
#else
#  define XDMF_EXPORT
#endif

#endif