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_rchr.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/libstddjb/byte_rchr.c') diff --git a/src/libstddjb/byte_rchr.c b/src/libstddjb/byte_rchr.c index 3564c36..66fbf27 100644 --- a/src/libstddjb/byte_rchr.c +++ b/src/libstddjb/byte_rchr.c @@ -1,11 +1,12 @@ /* ISC license. */ +#include #include -unsigned int byte_rchr (register char const *s, unsigned int n, int c) +size_t byte_rchr (char const *s, size_t n, int c) { - register unsigned int i = n ; - register char ch = c ; + size_t i = n ; + char ch = c ; s += n ; while (i--) if (*--s == ch) return i ; return n ; -- cgit v1.3.1