This file is indexed.

/usr/include/orbit-2.0/orbit/util/basic_types.h is in liborbit2-dev 1:2.14.19-0.3.

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
50
51
52
53
54
55
56
#ifndef BASIC_TYPES_H
#define BASIC_TYPES_H 1

#include <glib.h>

G_BEGIN_DECLS

enum {
	CORBA_FALSE = FALSE,
	CORBA_TRUE  = TRUE
};

typedef gint16    CORBA_short;
typedef gint32    CORBA_long;
typedef guint16   CORBA_unsigned_short;
typedef guint32   CORBA_unsigned_long;
typedef gfloat    CORBA_float;
typedef gdouble   CORBA_double;
typedef char      CORBA_char;
typedef gunichar2 CORBA_wchar;
typedef guchar    CORBA_boolean;
typedef guchar    CORBA_octet;
typedef gdouble   CORBA_long_double;

/*
 * Bad hack, oh well
 */
typedef CORBA_char  *CORBA_string;
typedef CORBA_wchar *CORBA_wstring;

#if !defined(ORBIT_DECL_CORBA_Object) && !defined(_CORBA_Object_defined)
#define ORBIT_DECL_CORBA_Object 1
#define _CORBA_Object_defined 1
typedef struct CORBA_Object_type *CORBA_Object;
#endif

#ifdef G_HAVE_GINT64
#define HAVE_CORBA_LONG_LONG

/*
 * According to the spec, these two are optional.
 * We support them if we can.
 */
typedef gint64  CORBA_long_long;
typedef guint64 CORBA_unsigned_long_long;

#else
#error ""
#error "You don't G_HAVE_GINT64 defined in glib."
#error "Please make sure you don't have an old glibconfig.h lying around."
#error ""
#endif

G_END_DECLS

#endif