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