/usr/include/clc/relational/any.h is in libclc-dev 0.2.0+git20160907-4.
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 | #define _CLC_ANY_DECL(TYPE) \
_CLC_OVERLOAD _CLC_DECL int any(TYPE v);
#define _CLC_VECTOR_ANY_DECL(TYPE) \
_CLC_ANY_DECL(TYPE) \
_CLC_ANY_DECL(TYPE##2) \
_CLC_ANY_DECL(TYPE##3) \
_CLC_ANY_DECL(TYPE##4) \
_CLC_ANY_DECL(TYPE##8) \
_CLC_ANY_DECL(TYPE##16)
_CLC_VECTOR_ANY_DECL(char)
_CLC_VECTOR_ANY_DECL(short)
_CLC_VECTOR_ANY_DECL(int)
_CLC_VECTOR_ANY_DECL(long)
|