You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. #include <strings.h>
  2. FILE_LICENCE ( GPL2_OR_LATER );
  3. int __flsl ( long x ) {
  4. unsigned long value = x;
  5. int ls = 0;
  6. for ( ls = 0 ; value ; ls++ ) {
  7. value >>= 1;
  8. }
  9. return ls;
  10. }