This file is indexed.

/usr/include/bamtools/api/api_global.h is in libbamtools-dev 2.4.1+dfsg-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
// ***************************************************************************
// api_global.h (c) 2010 Derek Barnett
// Marth Lab, Department of Biology, Boston College
// ---------------------------------------------------------------------------
// Last modified: 19 November 2010 (DB)
// ---------------------------------------------------------------------------
// Provides macros for exporting & importing BamTools API library symbols
// ***************************************************************************

#ifndef API_GLOBAL_H
#define API_GLOBAL_H

#include "shared/bamtools_global.h"

#ifdef BAMTOOLS_API_LIBRARY
#  define API_EXPORT BAMTOOLS_LIBRARY_EXPORT
#else
#  define API_EXPORT BAMTOOLS_LIBRARY_IMPORT
#endif

#endif // API_GLOBAL_H