This file is indexed.

/usr/lib/gcc/arm-linux-gnueabi/4.6/include/objc/deprecated/struct_objc_method_list.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
typedef struct objc_method_list {
  struct objc_method_list*  method_next;    /* This variable is used to link 
                                               a method list to another.  It 
                                               is a singly linked list. */
  int            method_count;              /* Number of methods defined in 
                                               this structure. */
  Method method_list[1];                    /* Variable length 
                                               structure. */
} MethodList, *MethodList_t;