/usr/include/ITK-4.9/vcl_cerrno.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
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
#if defined(linux) && !defined(__ANDROID__) // 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_
|