This file is indexed.

/usr/include/upnp/UpnpStdInt.h is in libupnp6-dev 1:1.6.19+git20160116-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
#ifndef UPNPSTDINT_H
#define UPNPSTDINT_H

#if !defined(UPNP_USE_BCBPP)

/* Sized integer types. */
#include <stdint.h>

#ifdef UPNP_USE_MSVCPP
	/* no ssize_t defined for VC */
	#ifdef  _WIN64
		typedef int64_t ssize_t;
	#else
		typedef int32_t ssize_t;
	#endif
#endif

#endif /* !defined(UPNP_USE_BCBPP) */

#endif /* UPNPSTDINT_H */