1 #include <strings.h>
2 
ffs(int i)3 int ffs(int i) {
4     return __builtin_ffs(i);
5 }
6