From a896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 15 Feb 2017 17:40:40 +0000 Subject: add arc4random_addrandom sysdep; next batch of types changes. The library isn't supposed to be functional yet: there are still a lot of type mismatches. --- src/libstddjb/bitarray_firstclear.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/libstddjb/bitarray_firstclear.c') diff --git a/src/libstddjb/bitarray_firstclear.c b/src/libstddjb/bitarray_firstclear.c index 80b6fbb..869dffe 100644 --- a/src/libstddjb/bitarray_firstclear.c +++ b/src/libstddjb/bitarray_firstclear.c @@ -1,11 +1,12 @@ /* ISC license. */ +#include #include -unsigned int bitarray_firstclear (register unsigned char const *s, unsigned int max) +size_t bitarray_firstclear (register unsigned char const *s, size_t max) { - unsigned int n = bitarray_div8(max) ; - register unsigned int i = 0 ; + size_t n = bitarray_div8(max) ; + register size_t i = 0 ; for (; i < n ; i++) if (s[i] != 0xffU) break ; if (i == n) return max ; i <<= 3 ; -- cgit v1.2.3