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/byte_count.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/libstddjb/byte_count.c') diff --git a/src/libstddjb/byte_count.c b/src/libstddjb/byte_count.c index 5e3f8af..a09e044 100644 --- a/src/libstddjb/byte_count.c +++ b/src/libstddjb/byte_count.c @@ -1,10 +1,11 @@ /* ISC license. */ +#include #include -unsigned int byte_count (register char const *s, register unsigned int len, register char b) +size_t byte_count (char const *s, size_t len, char b) { - register unsigned int n = 0 ; + size_t n = 0 ; while (len--) if (*s++ == b) n++ ; return n ; } -- cgit v1.3.1