blob: 2d18acd9b6c87ad6a5cb7b9c9288318176dcb2c2 [file] [log] [blame]
Kyle Swenson7d38e032023-07-10 11:16:56 -06001extern noinline unsigned long __crypto_memneq(const void *a, const void *b, size_t size);
2static inline int crypto_memneq(const void *a, const void *b, size_t size)
3{
4 return __crypto_memneq(a, b, size) != 0UL ? 1 : 0;
5}