OSDN Git Service

- trim any trailing whitespace
[uclinux-h8/uClibc.git] / libc / string / ffs.c
index d98383d..241b745 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "_string.h"
 
-libc_hidden_proto(ffs)
+/* Experimentally off - libc_hidden_proto(ffs) */
 
 int ffs(int i)
 {
@@ -48,7 +48,7 @@ int ffs(int i)
        for (n = 0 ; i ; ++n) {
                i >>= 1;
        }
-       
+
        return n;
 #endif
 }