This file is indexed.

/usr/share/aclocal/llnl_c_inline.m4 is in libsidl-dev 1.4.0.dfsg-8.2.

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
dnl @synopsis LLNL_C_HAS_INLINE
dnl
dnl Define SIDL_C_HAS_INLINE if the C compiler supports the inline keyword
dnl
dnl @author Tom Epperly
AC_DEFUN([LLNL_C_HAS_INLINE],
[AC_REQUIRE([AC_C_INLINE])dnl
if test "$ac_cv_c_inline" != no; then
  AC_DEFINE(SIDL_C_HAS_INLINE,1,
	[Define to 1 if the C compiler supports inline.])
fi
])