summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cutils.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/cutils.c b/cutils.c
index 9f124f5ea3..2d65357ee4 100644
--- a/cutils.c
+++ b/cutils.c
@@ -22,6 +22,7 @@
  * THE SOFTWARE.
  */
 #include "qemu-common.h"
+#include "host-utils.h"
 
 void pstrcpy(char *buf, int buf_size, const char *str)
 {
@@ -98,11 +99,5 @@ time_t mktimegm(struct tm *tm)
 
 int fls(int i)
 {
-    int bit;
-
-    for (bit=31; bit >= 0; bit--)
-        if (i & (1 << bit))
-            return bit+1;
-
-    return 0;
+    return 32 - clz32(i);
 }