This file is indexed.

/usr/include/xmlrpc-c/inttypes.h is in libxmlrpc-core-c3-dev 1.16.33-3.1ubuntu5.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
#ifndef XMLRPC_INTTYPES_H_INCLUDED
#define XMLRPC_INTTYPES_H_INCLUDED

#ifdef _MSC_VER

typedef unsigned short    xmlrpc_uint16_t;
typedef unsigned int      xmlrpc_uint32_t;
typedef unsigned __int64  xmlrpc_uint64_t;

#else
#include <inttypes.h>

typedef uint16_t xmlrpc_uint16_t;
typedef uint32_t xmlrpc_uint32_t;
typedef uint64_t xmlrpc_uint64_t;

#endif

#endif