Haiku
DragonflyBSD
—
FreeBSD
—
Haiku
—
Illumos
—
Linux
—
NetBSD
—
OpenBSD
Action
Toggle Dropdown
Action
Another action
Something else here
Separated link
root
/
src
/
system
/
libroot
/
posix
/
musl
/
misc
/ffsll.c
#include
<
strings.h
>
#include
"
atomic.h
"
int
ffsll
(
long
long
i)
{
return
i ?
a_ctz_64
(i)+1 : 0;
}