forked from Qortal/Brooklyn
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
16 lines
340 B
C
16 lines
340 B
C
#ifndef _ASM_GENERIC_BITOPS_BUILTIN___FFS_H_
|
|
#define _ASM_GENERIC_BITOPS_BUILTIN___FFS_H_
|
|
|
|
/**
|
|
* __ffs - find first bit in word.
|
|
* @word: The word to search
|
|
*
|
|
* Undefined if no bit exists, so code should check against 0 first.
|
|
*/
|
|
static __always_inline unsigned long __ffs(unsigned long word)
|
|
{
|
|
return __builtin_ctzl(word);
|
|
}
|
|
|
|
#endif
|