]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bit-ffs.c
Merge branch 'master' into table
[libucw.git] / ucw / bit-ffs.c
index 0775f536c571faee289d37559f9d74c2f526df8b..88f21e016c41c62e052cc95e7836a49b7bcbd7de 100644 (file)
@@ -7,8 +7,8 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
-#include "ucw/bitops.h"
+#include <ucw/lib.h>
+#include <ucw/bitops.h>
 
 /* Just a table, the rest is in bitops.h */
 
@@ -37,7 +37,7 @@ const byte ffs_table[] = {
 
 int main(void)
 {
-  uns i;
+  uint i;
   while (scanf("%x", &i) == 1)
     printf("%d\n", bit_ffs(i));
   return 0;