mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
6 lines
221 B
C
6 lines
221 B
C
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;
|
|
}
|