repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
powerpc-sf longjmp clobbering of val argument
[musl.git]
/
src
/
misc
/
ffs.c
blob
673ce5a9758284c7eca182b32de3902c9b353b3f
1
#include <strings.h>
2
#include
"atomic.h"
3
4
int
ffs
(
int
i
)
5
{
6
return
i
?
a_ctz_l
(
i
)+
1
:
0
;
7
}