Kyle Swenson | 7d38e03 | 2023-07-10 11:16:56 -0600 | [diff] [blame^] | 1 | extern noinline unsigned long __crypto_memneq(const void *a, const void *b, size_t size); |
2 | static 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 | } |