This file is indexed.

/usr/include/vxl/vcl/vcl_cstddef.h is in libvxl1-dev 1.14.0-14.

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
#ifndef vcl_cstddef_h_
#define vcl_cstddef_h_
/*
  Peter Vanroose, esat.kuleuven.be
*/

#include "vcl_compiler.h"

/* This should define: sizeof(), size_t, and ptrdiff_t */
#if !VCL_CXX_HAS_HEADER_CSTDDEF
# include <stddef.h>
#elif defined(VCL_GCC) && !defined(GNU_LIBSTDCXX_V3)
# include <stddef.h>
#elif defined(VCL_VC60)
# include <cstddef>
#elif defined(VCL_METRO_WERKS)
# include <cstddef>
#else
# undef __size_t // this is a bug fix for HPPA
# include "iso/vcl_cstddef.h"
using std::size_t;
using std::ptrdiff_t;
#endif

#ifndef vcl_size_t
#define vcl_size_t size_t
#endif

#ifndef vcl_ptrdiff_t
#define vcl_ptrdiff_t ptrdiff_t
#endif

#endif // vcl_cstddef_h_