]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bit-fls.c
tableprinter: removed some obsolete FIXME, added some comments
[libucw.git] / ucw / bit-fls.c
index ef38df30133ea0395b6b15dddbb7b32d13eff5e1..41002564db43496791d177d724e5505f45d283da 100644 (file)
@@ -7,13 +7,13 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
-#include "ucw/bitops.h"
+#include <ucw/lib.h>
+#include <ucw/bitops.h>
 
 int
 bit_fls(u32 x)
 {
-  uns l;
+  uint l;
 
   if (!x)
        return -1;
@@ -33,7 +33,7 @@ bit_fls(u32 x)
 
 int main(void)
 {
-  uns i;
+  uint i;
   while (scanf("%x", &i) == 1)
     printf("%d\n", bit_fls(i));
   return 0;