fix type issues in stdint.h so underlying types of 64-bit types match ABI
[musl] / src / misc / ffs.c
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 }