This file is indexed.

/usr/lib/gcc/arm-linux-gnueabi/4.6/include/objc/deprecated/objc_msg_sendv.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
/* The following types and functions are provided only for
   backwards-compatibility and should not be used in new code.  They
   were deprecated in GCC 4.6 and will be removed in the next
   release.  */
typedef void* retval_t;		/* return value */
typedef void(*apply_t)(void);	/* function pointer */
typedef union arglist {
  char *arg_ptr;
  char arg_regs[sizeof (char*)];
} *arglist_t;		        /* argument frame */

objc_EXPORT retval_t objc_msg_sendv(id, SEL, arglist_t);