#include #include "atomic.h" int ffsll(long long i) { return i ? a_ctz_64(i)+1 : 0; } #ifdef TEST int main(void) { return 0; } #endif