This file is indexed.

/usr/lib/gcc/arm-linux-gnueabi/4.6/include/objc/deprecated/struct_objc_selector.h is in gobjc-4.6-arm-linux-gnueabi 4.6.3-1ubuntu5cross1.62.

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
/* This struct used to be public, but is now private to the runtime.  */

/*
** Definition of a selector.  Selectors themselves are not unique, but
** the sel_id is a unique identifier.
*/
struct objc_selector
{
  void *sel_id;
  const char *sel_types;
};

inline static BOOL
sel_eq (SEL s1, SEL s2)
{
  if (s1 == 0 || s2 == 0)
    return s1 == s2;
  else
    return s1->sel_id == s2->sel_id;
}