]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blobdiff - include/bitops.h
configure: don't check for fls
[thirdparty/xfsprogs-dev.git] / include / bitops.h
index fe6173039ce4e34524aa3f764330e6eacd20324e..1f1adceccf5d2b498ba66948d5b6d536c6013da9 100644 (file)
@@ -6,7 +6,6 @@
  * fls: find last bit set.
  */
 
-#ifndef HAVE_FLS
 static inline int fls(int x)
 {
        int r = 32;
@@ -34,7 +33,6 @@ static inline int fls(int x)
        }
        return r;
 }
-#endif /* HAVE_FLS */
 
 static inline int fls64(__u64 x)
 {