This file is indexed.

/usr/include/gloox/macros.h is in libgloox-dev 1.0.9-2.

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
  Copyright (c) 2005-2013 by Jakob Schroeter <js@camaya.net>
  This file is part of the gloox library. http://camaya.net/gloox

  This software is distributed under a license. The full license
  agreement can be found in the file LICENSE in this distribution.
  This software may not be copied, modified, sold or distributed
  other than expressed in the named license agreement.

  This software is distributed without any warranty.
*/


#ifndef GLOOX_MACROS_H__
#define GLOOX_MACROS_H__

#if defined( _MSC_VER ) || defined( _WIN32_WCE )
#  pragma warning( disable:4251 )
#  pragma warning( disable:4786 )
#endif

#if defined( _WIN32 ) && !defined( __SYMBIAN32__ )
#  if defined( GLOOX_EXPORTS ) || defined( DLL_EXPORT )
#    define GLOOX_API __declspec( dllexport )
#  else
#    if defined( GLOOX_IMPORTS ) || defined( DLL_IMPORT )
#      define GLOOX_API __declspec( dllimport )
#    endif
#  endif
#endif

#ifndef GLOOX_API
#  define GLOOX_API
#endif


#if defined( __GNUC__ ) && ( __GNUC__ - 0 > 3 || ( __GNUC__ - 0 == 3 && __GNUC_MINOR__ - 0 >= 2 ) )
#  define GLOOX_DEPRECATED __attribute__ ( (__deprecated__) )
#  define GLOOX_DEPRECATED_CTOR explicit GLOOX_DEPRECATED
#elif defined( _MSC_VER ) && ( _MSC_VER >= 1300 )
#  define GLOOX_DEPRECATED __declspec( deprecated )
#  define GLOOX_DEPRECATED_CTOR explicit GLOOX_DEPRECATED
#else
#  define GLOOX_DEPRECATED
#  define GLOOX_DEPRECATED_CTOR
#endif


#endif // GLOOX_MACROS_H__