X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ucw%2Fbit-ffs.c;h=88f21e016c41c62e052cc95e7836a49b7bcbd7de;hb=ae7dfec55384883a72867d4877b5283a3c1c8aa1;hp=0775f536c571faee289d37559f9d74c2f526df8b;hpb=031256ad2e123eec58521f8e3eb9496c197641d2;p=libucw.git diff --git a/ucw/bit-ffs.c b/ucw/bit-ffs.c index 0775f536..88f21e01 100644 --- a/ucw/bit-ffs.c +++ b/ucw/bit-ffs.c @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#include "ucw/lib.h" -#include "ucw/bitops.h" +#include +#include /* 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;