/usr/include/ITK-4.9/mwerks/vcl_cstdlib.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 | #ifndef vcl_mwerks_cstdlib_h_
#define vcl_mwerks_cstdlib_h_
#include <cstdlib>
#define vcl_generic_cstdlib_STD /* */
#include "generic/vcl_cstdlib.h"
// the following functions are declared in both <cmath> and <cstdlib>
#undef vcl_abs
#define vcl_abs vcl_abs
inline int vcl_abs(int x) { return ::abs(x); }
inline long vcl_abs(long x) { return (x >= 0) ? x : -x; } // no "long ::abs(long)"
#endif
|