This file is indexed.

/usr/include/sphinx3/sphinx3_export.h is in libs3decoder-dev 0.8-0ubuntu1.

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
#ifndef __S3DECODER_EXPORT_H__
#define __S3DECODER_EXPORT_H__

/* Win32/WinCE DLL gunk */
#if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(CYGWIN)
#ifdef S3DECODER_EXPORTS
#define S3DECODER_EXPORT __declspec(dllexport)
#else
#define S3DECODER_EXPORT __declspec(dllimport)
#endif
#else /* !_WIN32 */
#ifdef HAVE_ATTRIBUTE_VISIBILITY
#define S3DECODER_EXPORT __attribute__ ((visibility("default")))
#else
#define S3DECODER_EXPORT
#endif
#endif

#if defined(__GNUC__) && __GNUC__ > 2
#define S3DECODER_DEPRECATED __attribute__ ((deprecated))
#else
#define S3DECODER_DEPRECATED
#endif

#endif /* __S3DECODER_EXPORT_H__ */