This file is indexed.

/usr/include/vxl/vcl/vcl_cerrno.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
#ifndef vcl_cerrno_h_
#define vcl_cerrno_h_
/*
  fsm
*/

#include "vcl_compiler.h"

#if !VCL_CXX_HAS_HEADER_CERRNO
# include <errno.h>
#else
# include "iso/vcl_cerrno.h"
#endif

#ifdef linux // bug fix: errno.h erroneously declares __errno_location() as C++
extern "C" inline int* __errno_location__Fv() { return __errno_location(); }
extern "C" inline int* _Z16__errno_locationv() { return __errno_location(); }
#endif

#endif // vcl_cerrno_h_