blob: 53abaaeac1416eb573f91cf251b1f85d5d79c7a0 [file] [log] [blame]
#include <strings.h>
int __flsl ( long x ) {
unsigned long value = x;
int ls = 0;
for ( ls = 0 ; value ; ls++ ) {
value >>= 1;
}
return ls;
}