This file is indexed.

/usr/include/ITK-4.5/win32-vc8/vcl_cstdlib.h is in libinsighttoolkit4-dev 4.5.0-3.

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
#ifndef vcl_win32_vc_8_cstdlib_h_
#define vcl_win32_vc_8_cstdlib_h_

#include <cstdlib>

#ifndef vcl_abs
# define vcl_abs vcl_abs
#endif

#define vcl_generic_cstdlib_STD std
#include "../generic/vcl_cstdlib.h"

// Use compiler intrinsics 
// see http://msdn.microsoft.com/en-us/library/5704bbxw(VS.80).aspx
inline int vcl_abs(int x) { return abs(x); }
inline long vcl_abs(long x) { return labs(x); }
inline long long vcl_abs(long long x) { return _abs64(x); }
#endif // vcl_win32_vc_8_cstdlib_h_