/usr/include/osl/checkmate/limitToCheckCount.h is in libosl-dev 0.6.0-3.1.
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 | /* limitToCheckCount.h
*/
#ifndef OSL_LIMITTOCHECKCOUNT_H
#define OSL_LIMITTOCHECKCOUNT_H
#include "osl/misc/carray.h"
#include <cstdlib>
namespace osl
{
namespace checkmate
{
inline size_t limitToCheckCount(int limit)
{
assert(limit >= 0);
extern CArray<size_t,32> LimitToCheckCountTable;
return LimitToCheckCountTable[limit>>7];
}
}
}
#endif /* _LIMITTOCHECKCOUNT_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|