From 05db4ba46ae1ca6143bb9b432d1e05e69eddd263 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 21 Jan 2017 14:51:28 +0000 Subject: Types fix, start: preparation and libbiguint --- src/libbiguint/bu_cmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libbiguint/bu_cmp.c') diff --git a/src/libbiguint/bu_cmp.c b/src/libbiguint/bu_cmp.c index a6bfaeb..033c61c 100644 --- a/src/libbiguint/bu_cmp.c +++ b/src/libbiguint/bu_cmp.c @@ -1,9 +1,9 @@ /* ISC license. */ -#include +#include #include -int bu_cmp (register uint32 const *a, register unsigned int an, register uint32 const *b, register unsigned int bn) +int bu_cmp (register uint32_t const *a, register unsigned int an, register uint32_t const *b, register unsigned int bn) { an = bu_len(a, an) ; bn = bu_len(b, bn) ; -- cgit v1.3.1