forked from Qortal/Brooklyn
442d22459d
Update / Redo the entire stack to juice up like no other was juiced before.
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;
|
|
}
|