1#include "atomic.h"
2
3int ffs(int i);
4int ffs(int i)
5{
6	return i ? a_ctz_l(i)+1 : 0;
7}
8