Rename fls() to __fls()
[fio.git] / fls.h
diff --git a/fls.h b/fls.h
index 850859bc5069a0a772a8772ffbed1571976762b2..dc7ecd0d629c94afe22a599739e76d68cb39922c 100644 (file)
--- a/fls.h
+++ b/fls.h
@@ -9,7 +9,7 @@
  * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
  */
 
-static inline int fls(int x)
+static inline int __fls(int x)
 {
        int r = 32;