blob: 2d18acd9b6c87ad6a5cb7b9c9288318176dcb2c2 [file] [log] [blame]
extern noinline unsigned long __crypto_memneq(const void *a, const void *b, size_t size);
static inline int crypto_memneq(const void *a, const void *b, size_t size)
{
return __crypto_memneq(a, b, size) != 0UL ? 1 : 0;
}