This file is indexed.

/usr/share/gluegen2/make/stub_includes/gluegen/gluegen_types.h is in libgluegen2-build-java 2.0-rc3-6.

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

/**
 * These are standard include replacement files
 * for gluegen processing only!
 *
 * Don't include this folder to your native compiler!
 *
 * Purpose of all files within this folder is to define a fixed bitsize
 * across all platforms to allow the resulting java type comfort all.
 * IE a 'intptr_t' shall always be 64bit.
 *
 * We use one size fits all.
 */

#ifndef __GLUEGEN__
    #error "This file is intended to be used for GlueGen code generation, not native compilation. Use the gluegen/make/stub_includes/platform variation instead!"
#endif

/**
 * Look in the GlueGen.java API documentation for the build-in types (terminal symbols) 
 * definition.
 * 
 * The following types are build-in:
 *
 * int8_t        - stdint.h
 * uint8_t       - stdint.h
 * int16_t       - stdint.h
 * uint16_t      - stdint.h
 * __int32       - windows
 * int32_t       - stdint.h
 * wchar_t       - stddef.h
 * uint32_t      - stdint.h
 * __int64       - windows
 * int64_t       - stdint.h
 * uint64_t      - stdint.h
 * ptrdiff_t     - stddef.h
 * intptr_t      - stdint.h
 * size_t        - stddef.h
 * uintptr_t     - stdint.h
 */

#define NULL ((void *)0)

#endif /* __gluegen_types_h */