loongarch64: add new syscall numbers
[musl.git] / src / misc / ffsll.c
blob0c5ced826657993210a021f49d76560a03a416d6
1 #include <strings.h>
2 #include "atomic.h"
4 int ffsll(long long i)
6 return i ? a_ctz_64(i)+1 : 0;