This file is indexed.

/usr/include/ncp/ext/stdint.h is in libncp-dev 2.2.6-8.

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

#if 1
/* we have stdint.h header */
#include <stdint.h>
#else
/* we have not stdint.h */

#include <ncp/kernel/types.h>
/* Signed.  */
#define int_least8_t	int8_t
#define int_least16_t	int16_t
#define int_least32_t	int32_t
/* Unsigned.  */
#define uint_least8_t	u_int8_t
#define uint_least16_t	u_int16_t
#define uint_least32_t	u_int32_t

/* Fast types.  */
/* Signed.  */
#define int_fast8_t	u_int8_t
/* fix for WORDSIZE==16 ! */
#define int_fast16_t	int
#define int_fast32_t	int
/* Unsigned.  */
#define uint_fast8_t	u_int8_t
/* fix for WORDSIZE==16 ! */
#define uint_fast16_t	unsigned int
#define uint_fast32_t	unsigned int
#endif

#endif /* __EXT_STDINT_H__ */